aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil-collection/modes/edebug/README.org
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-30 20:09:00 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-30 20:18:37 -0400
commit8c4e09dff83847ac7f07bf1da7751e9328006c4d (patch)
treea0e245567ce225f8bcb63b66e4d2373b5d033e4a /.config/emacs/lisp/evil-collection/modes/edebug/README.org
parent1e33b30749bb1043ffc6ceb5a2fb0977446788b3 (diff)
actual final changes and get rid of junk in lisp dir
actually works fine
Diffstat (limited to '.config/emacs/lisp/evil-collection/modes/edebug/README.org')
-rw-r--r--.config/emacs/lisp/evil-collection/modes/edebug/README.org53
1 files changed, 0 insertions, 53 deletions
diff --git a/.config/emacs/lisp/evil-collection/modes/edebug/README.org b/.config/emacs/lisp/evil-collection/modes/edebug/README.org
deleted file mode 100644
index aba73a1..0000000
--- a/.config/emacs/lisp/evil-collection/modes/edebug/README.org
+++ /dev/null
@@ -1,53 +0,0 @@
-* edebug
-
- Evil bindings for [[https://www.gnu.org/software/emacs/manual/html_node/elisp/Edebug.html][Edebug]].
-
-** Key bindings
-
- Bindings live in =edebug-mode-map=. Edebug overlays the source while a form
- is instrumented; evil-collection sets the initial state to normal and frees
- =g=, =G=, and =h= as prefixes.
-
- | Command | Original | Evil |
- |-------------------------------------+-----------+-----------------|
- | =edebug-step-mode= | =SPC= | =s=, =C-c C-s= |
- | =edebug-next-mode= | =n= | =n=, =C-c C-n= |
- | =edebug-go-mode= | =g= | =go=, =C-c C-c= |
- | =edebug-Go-nonstop-mode= | =G= | =gO= |
- | =edebug-trace-mode= | =t= | =t= |
- | =edebug-Trace-fast-mode= | =T= | =T= |
- | =edebug-continue-mode= | =c= | =c= |
- | =edebug-Continue-fast-mode= | =C= | =C= |
- | =edebug-forward-sexp= | =f= | =f= |
- | =edebug-step-in= | =i= | =i= |
- | =edebug-step-out= | =o= | =o= |
- | =edebug-goto-here= | =h= | =H= |
- | =edebug-instrument-callee= | =I= | =I= |
- | =edebug-stop= | =S= | =S= |
- | =top-level= | =q= | =q= |
- | =edebug-top-level-nonstop= | =Q= | =Q= |
- | =abort-recursive-edit= | =a= | =a= |
- | =edebug-set-breakpoint= | =b= | =b=, =C-x SPC= |
- | =edebug-unset-breakpoint= | =u= | =u=, =C-c C-d= |
- | =edebug-next-breakpoint= | =B= | =B= |
- | =edebug-set-conditional-breakpoint= | =x= | =x= |
- | =edebug-set-global-break-condition= | =X= | =X= |
- | =edebug-previous-result= | =r= | =r= |
- | =edebug-eval-expression= | =e= | =e= |
- | =edebug-eval-last-sexp= | =C-x C-e= | =C-x C-e= |
- | =edebug-visit-eval-list= | =E= | =EL= |
- | =edebug-where= | =w= | =WW=, =C-c C-l= |
- | =edebug-bounce-point= | =p= | =p= |
- | =edebug-view-outside= | =v=, =P= | =P= |
- | =edebug-toggle-save-windows= | =W= | =WS= |
- | =edebug-help= | =?= | =g?= |
- | =edebug-backtrace= | =d= | =d= |
- | =edebug-temp-display-freq-count= | === | === |
- | =negative-argument= | =-= | =-= |
-
-** Integrations
-
- - edebug-x: in =edebug-x-instrumented-function-list-mode-map=, =RET= jumps to
- the function, =E= evaluates, =Q= clears data, =q= quits. In
- =edebug-x-breakpoint-list-mode-map=, =RET= visits the breakpoint, =x= kills
- it, =Q= clears data, =q= quits.