You can quickly find a line of code executed in the Console window using an associative search.
Visual LISP searches for the last text you entered that begins with the entered text. If Visual LISP does not find a match, the entered text is highlight and the text is not completed.
This example expects the following text to have been previously entered in the Visual LISP Console window.
(setq origin (getpoint "\nOrigin of inyn sign: ")) (setq radius (getdist "\nRadius of inyn sign: " origin)) (setq half-r (/ radius 2)) (setq origin-x (car origin)) (command "._CIRCLE" origin radius)
Visual LISP completes the entered text with (command "._CIRCLE" origin radius).