Mon, 20 May 2024 12:39:30 -0500
Note get_active_clients deprecation
1036 | 1 | local function map(mode, lhs, rhs, opts) |
2 | opts = opts or {} | |
3 | opts.silent = opts.silent ~= false | |
4 | vim.keymap.set(mode, lhs, rhs, opts) | |
5 | end | |
1015 | 6 | |
1116 | 7 | map("n", "<F2>", ":Neotree reveal<CR>") |
1036 | 8 | map("n", "<F3>", "n") |
9 | map("n", "<S-F3>", "N") | |
1064 | 10 | map("", "<F4>", ":let v:hlsearch = !v:hlsearch<CR>") |
1036 | 11 | map("n", "<F5>", ":UndotreeToggle<CR>") |
12 | map("n", "<F8>", ":TagbarToggle<CR>") | |
1015 | 13 | |
14 | -- Allow :noh even in insert mode | |
1036 | 15 | map("i", "<F4>", "<C-O><F4>") |
1015 | 16 | |
17 | -- cover for search habit | |
1036 | 18 | map("c", "<F3>", "<CR>") |
1017 | 19 | |
1022 | 20 | -- change to file's directory |
1036 | 21 | map("n", "<leader>cd", ":cd %:p:h<CR>:pwd<CR>") |
1015 | 22 | |
1022 | 23 | -- window switching |
1036 | 24 | map("n", "<C-h>", "<C-w>h") |
25 | map("n", "<C-j>", "<C-w>j") | |
26 | map("n", "<C-k>", "<C-w>k") | |
27 | map("n", "<C-l>", "<C-w>l") | |
28 | map("n", "<C-\\>", "<C-w>p") | |
29 | ||
30 | -- Resize window using <ctrl> arrow keys | |
31 | map("n", "<C-Up>", "<cmd>resize +2<cr>") | |
32 | map("n", "<C-Down>", "<cmd>resize -2<cr>") | |
33 | map("n", "<C-Left>", "<cmd>vertical resize -2<cr>") | |
34 | map("n", "<C-Right>", "<cmd>vertical resize +2<cr>") | |
1015 | 35 | |
1022 | 36 | -- buffer switching |
1036 | 37 | map("n", "gb", "<C-^>") |
1064 | 38 | map("n", "gB", ":ls<CR>:b ", { silent = false }) |
1022 | 39 | |
40 | -- Select last paste, in the same mode it was pasted in | |
1064 | 41 | map("n", "gV", "'`[' . strpart(getregtype(), 0, 1) . '`]'", { expr = true }) |
1036 | 42 | |
43 | -- Add undo break-points | |
44 | map("i", ",", ",<c-g>u") | |
45 | map("i", ".", ".<c-g>u") | |
46 | map("i", ";", ";<c-g>u") | |
47 | ||
1064 | 48 | map("n", "j", "v:count == 0 ? 'gj' : 'j'", { expr = true }) |
49 | map("n", "k", "v:count == 0 ? 'gk' : 'k'", { expr = true }) | |
1022 | 50 | |
51 | -- Use ltag over tselect | |
1036 | 52 | map("n", "g<C-]>", ":exe 'ltag ' . expand('<cword>') | lopen<CR>") |
1022 | 53 | |
54 | -- clear all interestingwords with \\k since \K is ri.vim | |
1036 | 55 | map("n", "<leader><leader>k", ":call UncolorAllWords()<CR>") |
1022 | 56 | |
57 | -- use Grep for a recursive * | |
1036 | 58 | map("n", "g*", ":Grep<CR>") |
1022 | 59 | |
60 | -- K: doc, gKK: doc current filename | |
1036 | 61 | map("n", "gKK", ":call ViewDoc('doc', expand('%:p'))<CR>") |
1022 | 62 | |
63 | -- Tabular shortcuts | |
1036 | 64 | map("n", "<leader>ta", ":Tabularize first_arrow<CR>") |
65 | map("n", "<leader>te", ":Tabularize first_eq<CR>") | |
66 | map("n", "<leader>tc", ":Tabularize first_colon<CR>") | |
67 | map("n", "<leader>tm", ":Tabularize methods<CR>") | |
1022 | 68 | |
1158 | 69 | map("n", "<leader>a", function() |
70 | local fo = vim.bo.formatoptions | |
71 | if fo:find("a") then | |
72 | vim.bo.formatoptions = fo:gsub("a", "") | |
73 | vim.print("-a") | |
74 | else | |
75 | vim.bo.formatoptions = fo .. "a" | |
76 | vim.print("+a") | |
77 | end | |
78 | end) | |
1022 | 79 | |
80 | -- LSP features | |
1030
03d507b3c122
Customize LSP more - diag behavior and symbol HL
Meredith Howard <mhoward@roomag.org>
parents:
1022
diff
changeset
|
81 | |
1022 | 82 | vim.api.nvim_create_autocmd("LspAttach", { |
1092 | 83 | group = vim.api.nvim_create_augroup("lsp_attach", { clear = true }), |
1022 | 84 | callback = function(args) |
1092 | 85 | local bufopts = { buffer = args.buf } |
86 | ||
87 | map("n", "<leader>d", vim.diagnostic.open_float, bufopts) | |
88 | map("n", "<leader>ld", vim.diagnostic.setqflist, bufopts) | |
1101 | 89 | map("n", "[d", function() |
90 | vim.diagnostic.goto_prev({ float = false }) | |
91 | end, bufopts) | |
92 | map("n", "]d", function() | |
93 | vim.diagnostic.goto_next({ float = false }) | |
94 | end, bufopts) | |
1022 | 95 | |
1064 | 96 | map("n", "gD", vim.lsp.buf.declaration, bufopts) |
97 | map("n", "gd", vim.lsp.buf.definition, bufopts) | |
98 | map("n", "K", vim.lsp.buf.hover, bufopts) | |
99 | map("n", "gi", vim.lsp.buf.implementation, bufopts) | |
1153
57809d2642ff
Fix signature_help toggle
Meredith Howard <mhoward@roomag.org>
parents:
1152
diff
changeset
|
100 | map("i", "<C-S>", vim.lsp.buf.signature_help, bufopts) |
1064 | 101 | map("n", "<leader>wa", vim.lsp.buf.add_workspace_folder, bufopts) |
102 | map("n", "<leader>wr", vim.lsp.buf.remove_workspace_folder, bufopts) | |
103 | map("n", "<leader>wl", function() | |
1022 | 104 | print(vim.inspect(vim.lsp.buf.list_workspace_folders())) |
105 | end, bufopts) | |
1064 | 106 | map("n", "<leader>D", vim.lsp.buf.type_definition, bufopts) |
1152
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
107 | map("n", "crn", vim.lsp.buf.rename, bufopts) |
1064 | 108 | map("n", "gr", vim.lsp.buf.references, bufopts) |
1092 | 109 | map({ "n", "x" }, "<leader>f", function() |
1064 | 110 | vim.lsp.buf.format({ async = true }) |
111 | end, bufopts) | |
1152
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
112 | |
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
113 | local code_actions = require("actions-preview").code_actions |
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
114 | map("n", "crr", code_actions, bufopts) |
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
115 | map("x", "<C-R><C-R>", code_actions, bufopts) |
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
116 | map("x", "<C-R>", code_actions, bufopts) |
1022 | 117 | end, |
118 | }) |