Remove SPC DEL binding

Instead, 'ga' (or calling `what-cursor-position`) will trigger
nav-flash, to serve as the "where's my cursor" command from now on.

Closes #1883
This commit is contained in:
Henrik Lissner 2019-10-30 22:09:52 -04:00
parent d407b3355a
commit 9fa447a83b
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 4 additions and 2 deletions

View file

@ -292,7 +292,6 @@
:desc "Search for symbol in project" "*" #'+default/search-project-for-symbol-at-point
:desc "Find file in project" "SPC" #'projectile-find-file
:desc "Blink cursor line" "DEL" #'+nav-flash/blink-cursor
:desc "Jump to bookmark" "RET" #'bookmark-jump
;;; <leader> / --- search

View file

@ -27,4 +27,7 @@
;; `evil'
(advice-add #'evil-window-top :after #'+nav-flash-blink-cursor-a)
(advice-add #'evil-window-middle :after #'+nav-flash-blink-cursor-a)
(advice-add #'evil-window-bottom :after #'+nav-flash-blink-cursor-a))
(advice-add #'evil-window-bottom :after #'+nav-flash-blink-cursor-a)
;; Bound to `ga' for evil users
(advice-add #'what-cursor-position :after #'+nav-flash-blink-cursor-a))