-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkcmd.lsp
30 lines (28 loc) · 920 Bytes
/
kcmd.lsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(defun print-kcmd-info (auto-load)
(princ "\n")
(if auto-load
(princ "kcmd - Successfully loaded!\n\n")
)
(princ "kcmd - Command Line Tool for AutoCAD\n")
(princ "\n")
(princ "Version: 1.0.0\n")
(princ "\n")
(princ "Commands Overview:\n")
(princ " :flayer - Manage layers (on/off, freeze, lock, etc.)\n")
(princ " :sfile - Switch between open files\n")
(princ " :slayer - Search and switch layers\n")
(princ " :stab - Navigate between layout tabs\n")
(princ " :nav - Navigate the file system\n")
(princ " :odirectory - Open the current drawing's directory\n")
(princ "\n")
;; (princ "Type :help [command] for detailed usage.\n")
(princ "\n")
(princ "For support, email: [email protected]\n")
;; (princ "Download the latest version: kcmd.lugenx.com\n")
(princ "\n")
(princ)
)
(defun c::kcmd ()
(print-kcmd-info nil)
)
(print-kcmd-info t)