Imagine you are adding some new functionality to your program using the following code:
ObjectCreationStyle (strcase (cdr (assoc 3 BoundaryData)))
(if (equal ObjectCreationStyle "COMMAND")
(progn
(setq firstCenterPt(polar rowCenterPt (Degrees->Radians 45) distanceOnPath))
(gp:Create_activeX_Circle)
)
)
(Don't worry about what this code actually does, if anything. It is only an example that includes several long variable and function names.)
VLISP can save you some keystrokes by completing words for you.
To use the Visual LISP Complete Word by Match feature
ObjectCreationStyle (strcase (cdr (assoc 3 BoundaryData)))
(if (equal Ob
VLISP just saved you seventeen keystrokes as it searched within the current file and found the closest match to the last two letters you typed.
(if (equal ObjectCreationStyle "COMMAND")
(progn
(setq firstCenterPt(p
progn. However, the word you need is polar. If you keep pressing CTRL + SPACEBAR, VLISP cycles through all the possible matches in your code. Eventually, it will come around to polar.
VLISP matches the most recent “p” word, which happens to beThe Complete Word by Match feature is also available from the VLISP Search menu.