diff options
| author | Mike Vink <ivi@vinkies.net> | 2024-08-26 10:09:01 +0200 |
|---|---|---|
| committer | Mike Vink <ivi@vinkies.net> | 2024-08-26 10:09:01 +0200 |
| commit | de034b4197adf5c768330dbd2c21e844762056fa (patch) | |
| tree | 08630e63f2eede6ab022a10c5073d8f97110d76b | |
| parent | ccd644c21ebe8a81806bf5c880ba204e2ebd1cf4 (diff) | |
add gv bindings
| -rw-r--r-- | mut/neovim/fnl/conf/init.fnl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mut/neovim/fnl/conf/init.fnl b/mut/neovim/fnl/conf/init.fnl index f0dbcde..3a38d4e 100644 --- a/mut/neovim/fnl/conf/init.fnl +++ b/mut/neovim/fnl/conf/init.fnl @@ -96,12 +96,14 @@ :n false) (vim.schedule #(do (vim.cmd "let v:searchforward = 0") - (map :n :/ "/Compile.*" {:buffer truwe}) + (map :n :/ "/Compile.*" {:buffer true}) (map :n :? "?Compile.*" {:buffer true}))))) (map :n "[q" ":cprevious<cr>") (map :n "]q" ":cnext<cr>") (map :n "[x" ":lprevious<cr>") (map :n "]x" ":lnext<cr>") + (map :n "[g" ":GV<cr>") + (map :n "]g" ":GV?<cr>") (map :n :<leader>xp #(fzf.files)) (map :n "<leader>:" #(i-grep "<c-r><c-w>" (vim.fn.bufname "%"))) (map :v "<leader>:" ":Vgrep!<cr>") |
