From: Yegappan Lakshmanan <4298407+yegappan@users.noreply.github.com> Date: Sun, 16 Apr 2023 15:59:29 +0000 (-0700) Subject: Merge pull request #270 from andlrc/feat/add-mods-to-outline X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=68cbf3782d4ca09bd433d3037854f05f3688da5a;p=vim-lsp.git Merge pull request #270 from andlrc/feat/add-mods-to-outline Add to ":LspOutline" --- 68cbf3782d4ca09bd433d3037854f05f3688da5a diff --cc plugin/lsp.vim index 02db397,cc2a496..c0f1eb5 --- a/plugin/lsp.vim +++ b/plugin/lsp.vim @@@ -75,10 -75,10 +75,10 @@@ command! -nargs=0 -bar LspGotoImpl lsp. command! -nargs=0 -bar LspGotoTypeDef lsp.GotoTypedef(v:false, ) command! -nargs=0 -bar LspHighlight call LspDocHighlight() command! -nargs=0 -bar LspHighlightClear call LspDocHighlightClear() -command! -nargs=0 -bar LspHover lsp.Hover() +command! -nargs=0 -bar LspHover lsp.Hover() command! -nargs=0 -bar LspIncomingCalls lsp.IncomingCalls() command! -nargs=0 -bar LspOutgoingCalls lsp.OutgoingCalls() - command! -nargs=0 -bar LspOutline lsp.Outline() + command! -nargs=0 -bar LspOutline lsp.Outline() command! -nargs=0 -bar LspPeekDeclaration lsp.GotoDeclaration(v:true, ) command! -nargs=0 -bar LspPeekDefinition lsp.GotoDefinition(v:true, ) command! -nargs=0 -bar LspPeekImpl lsp.GotoImplementation(v:true, )