This commit is contained in:
newbie 2023-11-28 13:05:29 +08:00
parent d79e249e04
commit 158941ec4b

View File

@ -52,7 +52,7 @@ return {
{ 'n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>' },
{ 'n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>' },
{ 'n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>' },
{ 'n', '<C-I>', '<cmd>lua vim.lsp.buf.format()<CR>' },
{ 'n', '<leader>i', '<cmd>lua vim.lsp.buf.format()<CR>' },
})
end
@ -133,7 +133,7 @@ return {
}
require("symbols-outline").setup(opts)
G.map({
{ "n", "<C-O>", "<cmd>SymbolsOutline<cr>" },
{ "n", "<leader>o", "<cmd>SymbolsOutline<cr>" },
})
end
},