fix(gs/emacs): Don't repeat flycheck nav with evil .
Prevent flycheck-next-error and flycheck-prev-error from being repeated by evil, since they're movement commands rather than editing commands. This lets me spam `]e.` if I have to do the same thing to all the errors in a buffer, for example. Change-Id: I5993f6d19b71b63e5f4be1f3ce9e0cfd0357cc6e Reviewed-on: https://cl.tvl.fyi/c/depot/+/3425 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
This commit is contained in:
parent
5ba19ec2a2
commit
aad7e7e74b
1 changed files with 6 additions and 0 deletions
|
@ -114,6 +114,12 @@ private/hlissner/snippets."
|
|||
(paxedit-implicit-sexp-kill n)
|
||||
(paxedit-sexp-kill n)
|
||||
(message paxedit-message-kill)))
|
||||
|
||||
;;;
|
||||
|
||||
(evil-set-command-property 'flycheck-next-error :repeat nil)
|
||||
(evil-set-command-property 'flycheck-prev-error :repeat nil)
|
||||
|
||||
;;;
|
||||
|
||||
(map!
|
||||
|
|
Loading…
Reference in a new issue