From 00dc12759f978a6dcdce020baf46a4556f48980e Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Fri, 19 Nov 2021 16:49:06 -0600 Subject: [PATCH] Minor edits. --- .config/doom/config.org | 15 +++++++++------ .config/doom/packages.el | 1 + 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.config/doom/config.org b/.config/doom/config.org index ae6e917..d683978 100644 --- a/.config/doom/config.org +++ b/.config/doom/config.org @@ -871,12 +871,15 @@ Winner mode has been included with GNU Emacs since version 20. This is a global * ZAP TO CHAR Emacs provides a 'zap-to-char' command that kills from the current point to a character. It is bound to 'M-z' in standard GNU Emacs but since Doom Emacs uses 'SPC' as its leader key and does not have 'SPC z' binded to anything, it just makes since to use it for 'zap-to-char'. Note that 'zap-to-char' can be used with the universal argument 'SPC u' to modify its behavior. Examples of 'zap-to-char' usage are listed in the table below: -| KEYBINDING | WHAT IS DOES | -|------------------+-----------------------------------------------------------------| -| SPC z e | deletes all characters to the next occurrence of 'e' | -| SPC u 2 SPC z e | deletes all characters to the second occurrence of 'e' | -| SPC u - SPC z e | deletes all characters to the previous occurrence of 'e' | -| SPC u -2 SPC z e | deletes all characters to the fourth previous occurrence of 'e' | +| KEYBINDING | WHAT IS DOES | +|---------------------------+------------------------------------------------------------| +| SPC z e | deletes all chars to the next occurrence of 'e' | +| SPC u 2 SPC z e | deletes all chars to the second occurrence of 'e' | +| SPC u - SPC z e | deletes all chars to the previous occurrence of 'e' | +| SPC u -2 SPC z e | deletes all chars to the fourth previous occurrence of 'e' | +| SPC u 1 0 0 SPC u SPC z e | deletes all chars to the 100th occurrence of 'e' | + +=TIP:= The universal argument (SPC u) can only take a single integer by default. If you need to use a multi-digit number (like 100 in the last example in the table above), then you must terminate the universal argument with another 'SPC u' after typing the number. 'zap-up-to-char' is an alternative command that does not zap the char specified. It is binded to 'SPC Z'. It can also be used in conjunction with the universal argument 'SPC u' in similar fashion to the the 'zap-to-char' examples above. diff --git a/.config/doom/packages.el b/.config/doom/packages.el index 6d33b14..f20e8d6 100644 --- a/.config/doom/packages.el +++ b/.config/doom/packages.el @@ -70,6 +70,7 @@ (package! ivy-posframe) (package! mw-thesaurus) (package! ox-gemini) +(package! pacmacs) (package! peep-dired) (package! password-store) (package! rainbow-mode)