mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 08:55:16 -06:00
use vim.lsp.config API
This commit is contained in:
parent
8feb221d41
commit
2bab00d2e3
2 changed files with 15 additions and 21 deletions
|
|
@ -159,10 +159,9 @@ return {
|
|||
|
||||
local multi = require('mini.keymap').map_multistep
|
||||
local combo = require('mini.keymap').map_combo
|
||||
|
||||
combo({ 'v', 'r', 'i', 's' }, 'wq', '<BS><BS><Esc>l')
|
||||
multi({ 'i', 's' }, '<Tab>', { 'blink_accept', 'vimsnippet_next' })
|
||||
multi({ 'i', 's' }, '<S-Tab>', { 'vimsnippet_prev' })
|
||||
combo({ 'v', 'i', 's' }, 'wq', '<BS><BS><Esc>l')
|
||||
multi({ 'i', 's' }, '<Tab>', { 'vimsnippet_next', 'increase_indent' })
|
||||
multi({ 'i', 's' }, '<S-Tab>', { 'vimsnippet_prev', 'decrease_indent' })
|
||||
end)
|
||||
end,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue