dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit b02ae4d296c34dc3a3dcff758767d906ef85b7ba
parent 962f66f80199629ce83a7ad9de3dc1e23432e77c
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Thu, 12 Aug 2021 15:45:11 +0200

emacs: fix forward-word keybinding

Diffstat:
Memacs/config.org | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -592,10 +592,10 @@ Change M-f to stop at the start of the word: (global-set-key (kbd "M-f") 'forward-to-word) #+end_src -Bind M-F to the old functionality of M-f (stop at end of word) +Bind C-M-S-F to the old functionality of M-f (stop at end of word) #+begin_src emacs-lisp -(global-set-key (kbd "M-F") 'forward-word) +(global-set-key (kbd "C-M-S-F") 'forward-word) #+end_src ** Rectangle insert string