From 4893fbb5d79ef2a92a9d16fa4be1f72be0e76e09 Mon Sep 17 00:00:00 2001 From: Saba Saba Date: Thu, 9 Feb 2023 12:26:19 -0500 Subject: [PATCH] Added show-symbols --- git-repl.cl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/git-repl.cl b/git-repl.cl index 5577bce..82289ac 100644 --- 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")) -- 2.20.1