hlissner / evil-snipe

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

alias set-transient-map to set-temporary-overlay-map when not bound (fix... #7

Closed troyp closed 9 years ago

troyp commented 9 years ago

...es mode on Emacs <24.4) The mode was stil broken on 24.3 due to use of set-transient-map, which is also new in 24.4. Using s would highlight the matches, but failed to jump to them. This patch just aliases the function to it's previous name set-temporary-overlay-map if it's not bound. Basic functionality seems to work now (I haven't checked extensively).

hlissner commented 9 years ago

Excellent! Thanks for the help!