branch: elpa/evil-numbers
commit b711ef787e3836ce86d4f04ce7351bd59d0a7abc
Author: Michael Markert <[email protected]>
Commit: Michael Markert <[email protected]>

    Document keypad binding variants.
---
 README.org | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/README.org b/README.org
index 253190e2a3..05c05be94a 100644
--- a/README.org
+++ b/README.org
@@ -28,6 +28,14 @@
     (define-key evil-normal-state-map (kbd "C-c -") 'evil-numbers/dec-at-pt)
    #+END_SRC
 
+   For window system users the keypad =+= and =-= present an alternative that 
can be
+   directly bound without shadowing the regular =+= and =-=:
+
+   #+BEGIN_SRC emacs-lisp
+   (define-key evil-normal-state-map (kbd "<kp-add>") 'evil-numbers/inc-at-pt)
+   (define-key evil-normal-state-map (kbd "<kp-subtract>") 
'evil-numbers/dec-at-pt)
+   #+END_SRC
+
 ** Usage
    Position cursor on literal and play with your numbers!
 

Reply via email to