blob: 6157f3a441d46775ff77928566bfd3df5d5b0f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
usage
=====
- `van` `vin` lsp incremental selection now native via lsp (textDocument/selectionRange)
- `vim.lpeg` looks cool
- `:help diagnostic-signs`
- vim.ui_attach callbacks for ui-messages msg_show
config
======
- new `pummaxwidth`
- `complete` was updated a bit
- `nvim_echo`
- `vim.diagnostic.setqflist` (and setloclist)
- check out `vim.lsp.listOpts` `on_list` option. (or just the loclist opt)
- `CommandLeavePre`
- `ui-messages` `msg_show` `append` param
- `vim.lsp.ClientConfig`
to disable hover highlights:
```lua
vim.api.nvim_create_autocmd('ColorScheme', {
callback = function()
vim.api.nvim_set_hl(0, 'LspReferenceTarget', {})
end,
})
```
|