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:
parent
d407b3355a
commit
9fa447a83b
2 changed files with 4 additions and 2 deletions
|
@ -292,7 +292,6 @@
|
||||||
:desc "Search for symbol in project" "*" #'+default/search-project-for-symbol-at-point
|
:desc "Search for symbol in project" "*" #'+default/search-project-for-symbol-at-point
|
||||||
|
|
||||||
:desc "Find file in project" "SPC" #'projectile-find-file
|
: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
|
:desc "Jump to bookmark" "RET" #'bookmark-jump
|
||||||
|
|
||||||
;;; <leader> / --- search
|
;;; <leader> / --- search
|
||||||
|
|
|
@ -27,4 +27,7 @@
|
||||||
;; `evil'
|
;; `evil'
|
||||||
(advice-add #'evil-window-top :after #'+nav-flash-blink-cursor-a)
|
(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-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))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue