.config/nvim/lua/config/maps.lua

changeset 1034
d412eecafebf
parent 1030
03d507b3c122
child 1036
4da4e68e1796
equal deleted inserted replaced
1033:589244a349f6 1034:d412eecafebf
35 -- Use ltag over tselect 35 -- Use ltag over tselect
36 map.set("n", "g<C-]>", ":exe 'ltag ' . expand('<cword>') | lopen<CR>", opts) 36 map.set("n", "g<C-]>", ":exe 'ltag ' . expand('<cword>') | lopen<CR>", opts)
37 37
38 -- clear all interestingwords with \\k since \K is ri.vim 38 -- clear all interestingwords with \\k since \K is ri.vim
39 map.set("n", "<leader><leader>k", ":call UncolorAllWords()<CR>", opts) 39 map.set("n", "<leader><leader>k", ":call UncolorAllWords()<CR>", opts)
40
41 -- mark line
42 map.set("n", "<leader>l", "V<leader>k", opts)
43 40
44 -- use Grep for a recursive * 41 -- use Grep for a recursive *
45 map.set("n", "g*", ":Grep<CR>", opts) 42 map.set("n", "g*", ":Grep<CR>", opts)
46 43
47 -- K: doc, gKK: doc current filename 44 -- K: doc, gKK: doc current filename

mercurial