update
This commit is contained in:
parent
90c900c602
commit
c2bfcb8ff8
@ -78,7 +78,6 @@ return {
|
|||||||
"jsonls",
|
"jsonls",
|
||||||
"yamlls"
|
"yamlls"
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
@ -157,7 +156,7 @@ return {
|
|||||||
}
|
}
|
||||||
require("symbols-outline").setup(opts)
|
require("symbols-outline").setup(opts)
|
||||||
G.map({
|
G.map({
|
||||||
{ "n", "<leader>o", "<cmd>SymbolsOutline<cr>", { noremap = true } },
|
{ "n", "<cs-o>", "<cmd>SymbolsOutline<cr>", { noremap = true } },
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
@ -201,8 +200,6 @@ return {
|
|||||||
end,
|
end,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_next_item()
|
cmp.select_next_item()
|
||||||
@ -245,14 +242,6 @@ return {
|
|||||||
local kind = require("lspkind").cmp_format({
|
local kind = require("lspkind").cmp_format({
|
||||||
mode = "symbol_text",
|
mode = "symbol_text",
|
||||||
maxwidth = 50,
|
maxwidth = 50,
|
||||||
-- before = function(entry, vim_item)
|
|
||||||
-- vim_item.kind = kind_icons[vim_item.kind]
|
|
||||||
-- vim_item.menu = ({
|
|
||||||
-- buffer = "[Buffer]",
|
|
||||||
-- nvim_lsp = "[LSP]",
|
|
||||||
-- })[entry.source.name]
|
|
||||||
-- return vim_item
|
|
||||||
-- end,
|
|
||||||
})(entry, vim_item)
|
})(entry, vim_item)
|
||||||
local strings = vim.split(kind.kind, "%s", { trimempty = true })
|
local strings = vim.split(kind.kind, "%s", { trimempty = true })
|
||||||
kind.kind = kind_icons[vim_item.kind]
|
kind.kind = kind_icons[vim_item.kind]
|
||||||
@ -284,26 +273,7 @@ return {
|
|||||||
{ name = 'buffer' },
|
{ name = 'buffer' },
|
||||||
}),
|
}),
|
||||||
mapping = cmp.mapping.preset.insert({
|
mapping = cmp.mapping.preset.insert({
|
||||||
['<CR>'] = cmp.mapping.confirm({ select = false }),
|
-- ['<CR>'] = cmp.mapping.confirm({ select = true }),
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_next_item()
|
|
||||||
elseif vim.fn["vsnip#available"](1) == 1 then
|
|
||||||
feedkey("<Plug>(vsnip-expand-or-jump)", "")
|
|
||||||
elseif has_words_before() then
|
|
||||||
cmp.complete()
|
|
||||||
else
|
|
||||||
fallback()
|
|
||||||
end
|
|
||||||
end, { "i", "s" }),
|
|
||||||
|
|
||||||
["<S-Tab>"] = cmp.mapping(function()
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_prev_item()
|
|
||||||
elseif vim.fn["vsnip#jumpable"](-1) == 1 then
|
|
||||||
feedkey("<Plug>(vsnip-jump-prev)", "")
|
|
||||||
end
|
|
||||||
end, { "i", "s" }),
|
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
cmp.setup.cmdline(':', {
|
cmp.setup.cmdline(':', {
|
||||||
@ -315,28 +285,7 @@ return {
|
|||||||
{ name = 'cmdline' }
|
{ name = 'cmdline' }
|
||||||
}),
|
}),
|
||||||
mapping = cmp.mapping.preset.insert({
|
mapping = cmp.mapping.preset.insert({
|
||||||
|
|
||||||
-- ['<CR>'] = cmp.mapping.confirm({ select = false }),
|
-- ['<CR>'] = cmp.mapping.confirm({ select = false }),
|
||||||
|
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_next_item()
|
|
||||||
elseif vim.fn["vsnip#available"](1) == 1 then
|
|
||||||
feedkey("<Plug>(vsnip-expand-or-jump)", "")
|
|
||||||
elseif has_words_before() then
|
|
||||||
cmp.complete()
|
|
||||||
else
|
|
||||||
fallback()
|
|
||||||
end
|
|
||||||
end, { "i", "s" }),
|
|
||||||
|
|
||||||
["<S-tab>"] = cmp.mapping(function()
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_prev_item()
|
|
||||||
elseif vim.fn["vsnip#jumpable"](-1) == 1 then
|
|
||||||
feedkey("<Plug>(vsnip-jump-prev)", "")
|
|
||||||
end
|
|
||||||
end, { "i", "s" }),
|
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
Loading…
Reference in New Issue
Block a user