diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2016-07-11 19:47:56 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2016-07-11 19:47:56 +0100 |
| commit | bbceae97a21487b3c50d2cd53abae329d680dd62 (patch) | |
| tree | 3485bddb4bdffdee45f8c3f915c5f17c9ff706a8 | |
| parent | e288d844081ebd01242b36614c997e2b3b3b6024 (diff) | |
Fix uses of <c-m> in rc files, <ret> should be used now
| -rw-r--r-- | rc/core/grep.kak | 2 | ||||
| -rw-r--r-- | rc/core/make.kak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rc/core/grep.kak b/rc/core/grep.kak index e1cddf03..75e6ab49 100644 --- a/rc/core/grep.kak +++ b/rc/core/grep.kak @@ -27,7 +27,7 @@ hook global WinSetOption filetype=grep %{ addhl group grep addhl -group grep regex "^((?:\w:)?[^:]+):(\d+):(\d+)?" 1:cyan 2:green 3:green addhl -group grep line %{%opt{_grep_current_line}} default+b - hook buffer -group grep-hooks NormalKey <c-m> grep-jump + hook buffer -group grep-hooks NormalKey <ret> grep-jump } hook global WinSetOption filetype=(?!grep).* %{ rmhl grep; rmhooks buffer grep-hooks } diff --git a/rc/core/make.kak b/rc/core/make.kak index a08c9b1f..d9629ea7 100644 --- a/rc/core/make.kak +++ b/rc/core/make.kak @@ -24,7 +24,7 @@ addhl -group /make line %{%opt{_make_current_error_line}} default+b hook global WinSetOption filetype=make %{ addhl ref make - hook buffer -group make-hooks NormalKey <c-m> make-jump + hook buffer -group make-hooks NormalKey <ret> make-jump } hook global WinSetOption filetype=(?!make).* %{ rmhl make; rmhooks buffer make-hooks } |
