diff options
author | Marc Coquand <marc@mccd.space> | 2024-07-01 21:26:30 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-07-01 21:26:30 -0500 |
commit | 0a20357d4585da91d92252972f3eb7b715ff64ab (patch) | |
tree | c1e228d72b6331e89f72d99a1ba4ba1807d60381 /vim/pack/downloads/opt/lsp/plugin | |
download | openbsd-0a20357d4585da91d92252972f3eb7b715ff64ab.tar.gz openbsd-0a20357d4585da91d92252972f3eb7b715ff64ab.tar.bz2 openbsd-0a20357d4585da91d92252972f3eb7b715ff64ab.zip |
initial commit
Diffstat (limited to 'vim/pack/downloads/opt/lsp/plugin')
-rw-r--r-- | vim/pack/downloads/opt/lsp/plugin/lsp.vim | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/vim/pack/downloads/opt/lsp/plugin/lsp.vim b/vim/pack/downloads/opt/lsp/plugin/lsp.vim new file mode 100644 index 0000000..3b3815a --- /dev/null +++ b/vim/pack/downloads/opt/lsp/plugin/lsp.vim @@ -0,0 +1,163 @@ +if !has('vim9script') || v:version < 900 + " Needs Vim version 9.0 and above + finish +endif + +vim9script noclear + +# Language Server Protocol (LSP) plugin for vim + +if get(g:, 'loaded_lsp', false) + finish +endif +g:loaded_lsp = true + +import '../autoload/lsp/options.vim' +import autoload '../autoload/lsp/lsp.vim' + +# Set LSP plugin options from 'opts'. +def g:LspOptionsSet(opts: dict<any>) + options.OptionsSet(opts) +enddef + +# Return a copy of all the LSP plugin options +def g:LspOptionsGet(): dict<any> + return options.OptionsGet() +enddef + +# Add one or more LSP servers in 'serverList' +def g:LspAddServer(serverList: list<dict<any>>) + lsp.AddServer(serverList) +enddef + +# Register 'Handler' callback function for LSP command 'cmd'. +def g:LspRegisterCmdHandler(cmd: string, Handler: func) + lsp.RegisterCmdHandler(cmd, Handler) +enddef + +# Returns true if the language server for the current buffer is initialized +# and ready to accept requests. +def g:LspServerReady(): bool + return lsp.ServerReady() +enddef + +# Returns true if the language server for 'ftype' file type is running +def g:LspServerRunning(ftype: string): bool + return lsp.ServerRunning(ftype) +enddef + +augroup LSPAutoCmds + au! + autocmd BufNewFile,BufReadPost,FileType * lsp.AddFile(expand('<abuf>')->str2nr()) + # Note that when BufWipeOut is invoked, the current buffer may be different + # from the buffer getting wiped out. + autocmd BufWipeOut * lsp.RemoveFile(expand('<abuf>')->str2nr()) + autocmd BufWinEnter * lsp.BufferLoadedInWin(expand('<abuf>')->str2nr()) +augroup END + +# TODO: Is it needed to shutdown all the LSP servers when exiting Vim? +# This takes some time. +# autocmd VimLeavePre * call lsp.StopAllServers() + +# LSP commands +command! -nargs=? -bar -range LspCodeAction lsp.CodeAction(<line1>, <line2>, <q-args>) +command! -nargs=0 -bar LspCodeLens lsp.CodeLens() +command! -nargs=+ -bar -bang -count -complete=customlist,lsp.LspDiagComplete LspDiag lsp.LspDiagCmd(<q-args>, <count>, <bang>false) +command! -nargs=0 -bar -bang LspDiagCurrent lsp.LspShowCurrentDiag(<bang>false) +command! -nargs=0 -bar LspDiagFirst lsp.JumpToDiag('first') +command! -nargs=0 -bar LspDiagLast lsp.JumpToDiag('last') +command! -nargs=0 -bar -count=1 LspDiagNext lsp.JumpToDiag('next', <count>) +command! -nargs=0 -bar -count=1 LspDiagNextWrap lsp.JumpToDiag('nextWrap', <count>) +command! -nargs=0 -bar -count=1 LspDiagPrev lsp.JumpToDiag('prev', <count>) +command! -nargs=0 -bar -count=1 LspDiagPrevWrap lsp.JumpToDiag('prevWrap', <count>) +command! -nargs=0 -bar LspDiagShow lsp.ShowDiagnostics() +command! -nargs=0 -bar LspDiagHere lsp.JumpToDiag('here') +command! -nargs=0 -bar LspDocumentSymbol lsp.ShowDocSymbols() +command! -nargs=0 -bar LspFold lsp.FoldDocument() +command! -nargs=0 -bar -range=% LspFormat lsp.TextDocFormat(<range>, <line1>, <line2>) +command! -nargs=0 -bar -count LspGotoDeclaration lsp.GotoDeclaration(v:false, <q-mods>, <count>) +command! -nargs=0 -bar -count LspGotoDefinition lsp.GotoDefinition(v:false, <q-mods>, <count>) +command! -nargs=0 -bar -count LspGotoImpl lsp.GotoImplementation(v:false, <q-mods>, <count>) +command! -nargs=0 -bar -count LspGotoTypeDef lsp.GotoTypedef(v:false, <q-mods>, <count>) +command! -nargs=0 -bar LspHighlight call LspDocHighlight(bufnr(), <q-mods>) +command! -nargs=0 -bar LspHighlightClear call LspDocHighlightClear() +command! -nargs=? -bar LspHover lsp.Hover(<q-mods>) +command! -nargs=1 -bar -complete=customlist,lsp.LspInlayHintsComplete LspInlayHints lsp.InlayHints(<q-args>) +command! -nargs=0 -bar LspIncomingCalls lsp.IncomingCalls() +command! -nargs=0 -bar LspOutgoingCalls lsp.OutgoingCalls() +command! -nargs=0 -bar -count LspOutline lsp.Outline(<q-mods>, <count>) +command! -nargs=0 -bar -count LspPeekDeclaration lsp.GotoDeclaration(v:true, <q-mods>, <count>) +command! -nargs=0 -bar -count LspPeekDefinition lsp.GotoDefinition(v:true, <q-mods>, <count>) +command! -nargs=0 -bar -count LspPeekImpl lsp.GotoImplementation(v:true, <q-mods>, <count>) +command! -nargs=0 -bar LspPeekReferences lsp.ShowReferences(v:true) +command! -nargs=0 -bar -count LspPeekTypeDef lsp.GotoTypedef(v:true, <q-mods>, <count>) +command! -nargs=? -bar LspRename lsp.Rename(<q-args>) +command! -nargs=0 -bar LspSelectionExpand lsp.SelectionExpand() +command! -nargs=0 -bar LspSelectionShrink lsp.SelectionShrink() +command! -nargs=+ -bar -complete=customlist,lsp.LspServerComplete LspServer lsp.LspServerCmd(<q-args>) +command! -nargs=0 -bar LspShowReferences lsp.ShowReferences(v:false) +command! -nargs=0 -bar LspShowAllServers lsp.ShowAllServers() +command! -nargs=0 -bar LspShowSignature call LspShowSignature() +command! -nargs=0 -bar LspSubTypeHierarchy lsp.TypeHierarchy(0) +command! -nargs=0 -bar LspSuperTypeHierarchy lsp.TypeHierarchy(1) +# Clangd specifc extension to switch from one C/C++ source file to a +# corresponding header file +command! -nargs=0 -bar LspSwitchSourceHeader lsp.SwitchSourceHeader() +command! -nargs=? -bar LspSymbolSearch lsp.SymbolSearch(<q-args>, <q-mods>) +command! -nargs=1 -bar -complete=dir LspWorkspaceAddFolder lsp.AddWorkspaceFolder(<q-args>) +command! -nargs=0 -bar LspWorkspaceListFolders lsp.ListWorkspaceFolders() +command! -nargs=1 -bar -complete=dir LspWorkspaceRemoveFolder lsp.RemoveWorkspaceFolder(<q-args>) + +# Add the GUI menu entries +if has('gui_running') + anoremenu <silent> L&sp.Goto.Definition :LspGotoDefinition<CR> + anoremenu <silent> L&sp.Goto.Declaration :LspGotoDeclaration<CR> + anoremenu <silent> L&sp.Goto.Implementation :LspGotoImpl<CR> + anoremenu <silent> L&sp.Goto.TypeDef :LspGotoTypeDef<CR> + + anoremenu <silent> L&sp.Show\ Signature :LspShowSignature<CR> + anoremenu <silent> L&sp.Show\ References :LspShowReferences<CR> + anoremenu <silent> L&sp.Show\ Detail :LspHover<CR> + anoremenu <silent> L&sp.Outline :LspOutline<CR> + + anoremenu <silent> L&sp.Goto\ Symbol :LspDocumentSymbol<CR> + anoremenu <silent> L&sp.Symbol\ Search :LspSymbolSearch<CR> + anoremenu <silent> L&sp.Outgoing\ Calls :LspOutgoingCalls<CR> + anoremenu <silent> L&sp.Incoming\ Calls :LspIncomingCalls<CR> + anoremenu <silent> L&sp.Rename :LspRename<CR> + anoremenu <silent> L&sp.Code\ Action :LspCodeAction<CR> + + anoremenu <silent> L&sp.Highlight\ Symbol :LspHighlight<CR> + anoremenu <silent> L&sp.Highlight\ Clear :LspHighlightClear<CR> + + # Diagnostics + anoremenu <silent> L&sp.Diagnostics.Current :LspDiag current<CR> + anoremenu <silent> L&sp.Diagnostics.Show\ All :LspDiag show<CR> + anoremenu <silent> L&sp.Diagnostics.First :LspDiag first<CR> + anoremenu <silent> L&sp.Diagnostics.Last :LspDiag last<CR> + anoremenu <silent> L&sp.Diagnostics.Next :LspDiag next<CR> + anoremenu <silent> L&sp.Diagnostics.Previous :LspDiag prev<CR> + anoremenu <silent> L&sp.Diagnostics.This :LspDiag here<CR> + + if &mousemodel =~ 'popup' + anoremenu <silent> PopUp.L&sp.Go\ to\ Definition + \ :LspGotoDefinition<CR> + anoremenu <silent> PopUp.L&sp.Go\ to\ Declaration + \ :LspGotoDeclaration<CR> + anoremenu <silent> PopUp.L&sp.Find\ All\ References + \ :LspShowReferences<CR> + anoremenu <silent> PopUp.L&sp.Show\ Detail + \ :LspHover<CR> + anoremenu <silent> PopUp.L&sp.Highlight\ Symbol + \ :LspHighlight<CR> + anoremenu <silent> PopUp.L&sp.Highlight\ Clear + \ :LspHighlightClear<CR> + endif +endif + +# Invoke autocmd to register LSP servers and to set LSP options +if exists('#User#LspSetup') + :doautocmd <nomodeline> User LspSetup +endif + +# vim: shiftwidth=2 softtabstop=2 |