Message 1 of 3
Visual Studio Code AutoCAD AutoLISP extension is missing a snippet for the (cond) function
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am just starting to use Visual Studio Code today with the AutoCAD AutoLISP extension. I am trying out the code snippets, but there is not one for (cond).
Explanation:
If I type
while
the extension expands it to
(while testexpr [expr ...])
If I type
if
the extension expands it to
(if (testexpr)
(progn
(thenexpr)
)
)
But if I type
cond
there is no helpful expansion.
cond
I found out that I can add snippets under File, Preferences, Configure User Snippets. But I thought I better report the issue. Can anybody confirm this?
Tom