fix(gs/emacs): Correct next/prev error bindings
next-error and prev-error are weirdly broken in ways I don't entirely understand, but I only really use flycheck so I can just use the flycheck ones instead Change-Id: Icdb25950f6fdcca163c68db30366af0f6fa28d7d Reviewed-on: https://cl.tvl.fyi/c/depot/+/3108 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
This commit is contained in:
parent
85001c3540
commit
f790e72763
1 changed files with 4 additions and 4 deletions
|
@ -210,7 +210,7 @@ private/hlissner/snippets."
|
||||||
:desc "Buffer" :nv "b" #'doom/previous-buffer
|
:desc "Buffer" :nv "b" #'doom/previous-buffer
|
||||||
:desc "Diff Hunk" :nv "d" #'git-gutter:previous-hunk
|
:desc "Diff Hunk" :nv "d" #'git-gutter:previous-hunk
|
||||||
:desc "Todo" :nv "t" #'hl-todo-previous
|
:desc "Todo" :nv "t" #'hl-todo-previous
|
||||||
:desc "Error" :nv "e" #'previous-error
|
:desc "Error" :nv "e" #'flycheck-previous-error
|
||||||
:desc "Workspace" :nv "w" #'+workspace/switch-left
|
:desc "Workspace" :nv "w" #'+workspace/switch-left
|
||||||
:desc "Smart jump" :nv "h" #'smart-backward
|
:desc "Smart jump" :nv "h" #'smart-backward
|
||||||
:desc "Spelling error" :nv "s" #'evil-prev-flyspell-error
|
:desc "Spelling error" :nv "s" #'evil-prev-flyspell-error
|
||||||
|
@ -222,7 +222,7 @@ private/hlissner/snippets."
|
||||||
:desc "Buffer" :nv "b" #'doom/next-buffer
|
:desc "Buffer" :nv "b" #'doom/next-buffer
|
||||||
:desc "Diff Hunk" :nv "d" #'git-gutter:next-hunk
|
:desc "Diff Hunk" :nv "d" #'git-gutter:next-hunk
|
||||||
:desc "Todo" :nv "t" #'hl-todo-next
|
:desc "Todo" :nv "t" #'hl-todo-next
|
||||||
:desc "Error" :nv "e" #'next-error
|
:desc "Error" :nv "e" #'flycheck-next-error
|
||||||
:desc "Workspace" :nv "w" #'+workspace/switch-right
|
:desc "Workspace" :nv "w" #'+workspace/switch-right
|
||||||
:desc "Smart jump" :nv "l" #'smart-forward
|
:desc "Smart jump" :nv "l" #'smart-forward
|
||||||
:desc "Spelling error" :nv "s" #'evil-next-flyspell-error
|
:desc "Spelling error" :nv "s" #'evil-next-flyspell-error
|
||||||
|
@ -635,8 +635,8 @@ private/hlissner/snippets."
|
||||||
:v "V" #'er/contract-region
|
:v "V" #'er/contract-region
|
||||||
|
|
||||||
;; flycheck
|
;; flycheck
|
||||||
:m "]e" #'next-error
|
:m "]e" #'flycheck-next-error
|
||||||
:m "[e" #'previous-error
|
:m "[e" #'flycheck-previous-error
|
||||||
(:after flycheck
|
(:after flycheck
|
||||||
:map flycheck-error-list-mode-map
|
:map flycheck-error-list-mode-map
|
||||||
:n "C-n" #'flycheck-error-list-next-error
|
:n "C-n" #'flycheck-error-list-next-error
|
||||||
|
|
Loading…
Reference in a new issue