hlissner / evil-snipe

2-char searching ala vim-sneak & vim-seek, for evil-mode
MIT License
336 stars 25 forks source link

evil-snipe-disabled-modes seems not working by default #62

Closed Vonfry closed 6 years ago

Vonfry commented 6 years ago
(require 'evil-snipe)
*** Eval error ***  Symbol’s function definition is void: org-agenda-mode

If I load org-agenda and the function org-agenda-mode can be run, it will put an other error for magit-mode which I have required when emacs init.

The whole log in ielm.

*** Welcome to IELM ***  Type (describe-mode) for help.
ELISP> (require 'evil-snipe)
*** Eval error ***  Symbol’s function definition is void: org-agenda-mode
ELISP> (require 'org-agenda)
org-agenda
ELISP> (fboundp 'org-agenda-mode)
t
ELISP> (require 'evil-snipe)
*** Eval error ***  Symbol’s value as variable is void: magit-mode
ELISP> (fboundp 'magit-mode)
t
hlissner commented 6 years ago

Ack, sorry. A typo snuck into a recent commit. This is now fixed! Feel free to reopen this if that isn't the case.