aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil-collection/modes/vterm/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/vterm/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/vterm/README.org')
-rw-r--r--.config/emacs/lisp/evil-collection/modes/vterm/README.org55
1 files changed, 0 insertions, 55 deletions
diff --git a/.config/emacs/lisp/evil-collection/modes/vterm/README.org b/.config/emacs/lisp/evil-collection/modes/vterm/README.org
deleted file mode 100644
index c6133fd..0000000
--- a/.config/emacs/lisp/evil-collection/modes/vterm/README.org
+++ /dev/null
@@ -1,55 +0,0 @@
-* vterm
-
- Evil bindings for [[https://github.com/akermu/emacs-libvterm][vterm]].
-
- Initial state is =insert=. Normal state adds the bindings below and uses
- vterm-aware operators that respect the prompt boundary.
-
-** Key bindings (normal state)
-
- | Command | Original | Evil |
- |-----------------------------------------+-----------+------|
- | =vterm-previous-prompt= | =C-c C-p= | =[[= |
- | =vterm-next-prompt= | =C-c C-n= | =]]= |
- | =vterm-yank= (paste before) | =C-y= | =P= |
- | =evil-collection-vterm-paste-after= | n/a | =p= |
- | =evil-collection-vterm-insert= | n/a | =i= |
- | =evil-collection-vterm-insert-line= | n/a | =I= |
- | =evil-collection-vterm-append= | n/a | =a= |
- | =evil-collection-vterm-append-line= | n/a | =A= |
- | =evil-collection-vterm-first-non-blank= | n/a | =^= |
- | =vterm-undo= | n/a | =u= |
- | =vterm-reset-cursor-point= | =C-c C-r= | =G= |
-
- =RET= sends to the terminal in the state named by =evil-collection-repl-submit-state=.
-
-** Insert state
-
- To preserve terminal control sequences, the following are forwarded raw to
- the terminal via =vterm--self-insert=: =C-a=, =C-b=, =C-d=, =C-e=, =C-f=,
- =C-k=, =C-l=, =C-n=, =C-o=, =C-p=, =C-q=, =C-r=, =C-s=, =C-t=, =C-u=, =C-v=,
- =C-w=, =C-y=, =C-z=. =C-c= (prefix) and =C-h= (help) are not forwarded.
-
- =<delete>= → =vterm-send-delete=.
-
-** New commands
-
- | Command | Key | |
- |----------------------------------------------+-----------+--------------------------------------------|
- | =evil-collection-vterm-delete= | =d= | delete operator, clamped to current line |
- | =evil-collection-vterm-delete-line= | =D= | delete to end-of-line |
- | =evil-collection-vterm-delete-char= | =x= | delete forward char |
- | =evil-collection-vterm-delete-backward-char= | =X= | delete backward char |
- | =evil-collection-vterm-change= | =c= | change operator |
- | =evil-collection-vterm-change-line= | =C= | change to end-of-line |
- | =evil-collection-vterm-substitute= | =s= | |
- | =evil-collection-vterm-substitute-line= | =S= | |
- | =evil-collection-vterm-replace= | =r= | |
- | =evil-collection-vterm-next-line= | =j= | won't move below last prompt line |
- | =evil-collection-vterm-toggle-send-escape= | =C-c C-z= | toggle whether =ESC= goes to vterm or evil |
-
-** Customization
-
- | Variable | Default | Purpose |
- |------------------------------------------+---------+--------------------------------------------------------|
- | =evil-collection-vterm-move-cursor-back= | =nil= | Move cursor back one column when leaving insert state. |