diff options
| author | jmmathena <46335614+jmmathena@users.noreply.github.com> | 2021-11-17 14:30:04 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-17 21:30:04 +0100 |
| commit | 040210af0b3c9000ff9e552855322a1d35cebcf3 (patch) | |
| tree | fc435e650fc12c931d62223f05d2775282f66c46 /evil-vars.el | |
| parent | c28e42126c4ae349e2d77c80b38feb68bc1b5b78 (diff) | |
Fix #1518: "custom functions bound to '0' break motion parsing" in a saner way (#1534)
* Try just comparing to '0'
* Remove cruft and clean things up
* Remove magic number
Diffstat (limited to 'evil-vars.el')
| -rw-r--r-- | evil-vars.el | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/evil-vars.el b/evil-vars.el index b87814b..5e2cb93 100644 --- a/evil-vars.el +++ b/evil-vars.el @@ -611,15 +611,6 @@ in insert state." :type 'boolean :group 'evil) -(defcustom evil-digit-bound-motions - '(evil-beginning-of-line) - "The motion commands that can be bound to some digit key (typically 0). -While Evil is reading a motion command, functions in this list act as themselves -if their corresponding key was the first digit in the key sequence, and behave -like `digit-argument' for the purposes of `evil-keypress-parser' otherwise." - :type '(repeat function) - :group 'evil) - (defvar dabbrev-search-these-buffers-only) (defvar dabbrev-case-distinction) (defcustom evil-complete-next-func |
