You can retrieve text you previously entered in the Console window by pressing TAB while at the Console prompt. Each time you press TAB, the previously entered text replaces the text at the Console prompt. You can repeatedly press TAB until you cycle through all the text entered at the Console prompt during your VLISP session. After you've scrolled to the first entered line, VLISP starts again by retrieving the last command entered in the Console window, and the cycle repeats. Press SHIFT + TAB to scroll the input history in the opposite direction.
For example, assume you entered the following commands at the Console prompt:
(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)
To retrieve commands entered in the Console window
_$ (command "_.CIRCLE" origin radius)
_$ (setq origin-x (car origin))
_$ (setq half-r (/ radius 2))
_$ (setq origin-x (car origin))
_$ (command "_.CIRCLE" origin radius)
This was the last command you entered at the Console prompt.
_$ (setq origin (getpoint "\nOrigin of inyn sign: "))
Note that if you enter the same expression more than once, it appears only once as you cycle through the Console window input history.
You can perform an associative search in the input history to retrieve a specific command that you previously entered.
To perform an associative search of the Console input history
_$ (command
_$ (command "_.CIRCLE" origin radius)
If VLISP does not find a match, it does nothing (except possibly emit a beep). Press SHIFT + TAB to reverse the direction of the associative search and find progressively less-recent inputs.