+bind to M-c for count-words

When using visual mode, I often require the size of the selected region.
My modeline doesn't currently have a method of displaying selected text
properties, so I set this. Only works in visual mode.
This commit is contained in:
dx
2020-05-10 17:26:47 +01:00
parent 5bd00101fc
commit 786b21b019

View File

@@ -553,5 +553,6 @@ General keymap
*** Non-leader
#+BEGIN_SRC elisp
(map!
:n "TAB" #'evil-jump-item)
:n "TAB" #'evil-jump-item
:v "M-c" #'count-words-region)
#+END_SRC