projects
/
git-repl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54e9431
)
Added show-symbols
author
Saba Saba
<saba@sabadev.xyz>
Thu, 9 Feb 2023 17:26:19 +0000
(12:26 -0500)
committer
Saba Saba
<saba@sabadev.xyz>
Thu, 9 Feb 2023 17:26:19 +0000
(12:26 -0500)
git-repl.cl
patch
|
blob
|
history
diff --git
a/git-repl.cl
b/git-repl.cl
index
5577bce
..
82289ac
100644
(file)
--- a/
git-repl.cl
+++ b/
git-repl.cl
@@
-37,6
+37,11
@@
(do-external-symbols (sym)
(format t "~a~%" sym)))
+(defun-public show-symbols ()
+ "Lists every available symbol. Use (describe 'symbol-name) for documentation."
+ (do-symbols (sym)
+ (format t "~a~%" sym)))
+
(defun-public status ()
"Displays the current status of the repository"
(git "status"))