functions.vim 1.2 KB

1234567891011121314151617
  1. command! LspCodeAction lua require 'function-wrapper'.code_action()
  2. command! LspDeclaration lua require 'function-wrapper'.declaration()
  3. command! LspDefinition lua require 'function-wrapper'.definition()
  4. command! LspDocumentSymbol lua require 'function-wrapper'.document_symbol()
  5. command! LspFormatting lua require 'function-wrapper'.formatting()
  6. command! LspFormattingSync lua require 'function-wrapper'.formatting_sync()
  7. command! LspHover lua require 'function-wrapper'.hover()
  8. command! LspImplementation lua require 'function-wrapper'.implementation()
  9. command! LspRangeCodeAction lua require 'function-wrapper'.range_code_action()
  10. command! LspRangeFormatting lua require 'function-wrapper'.range_formatting()
  11. command! LspReferences lua require 'function-wrapper'.references()
  12. command! LspRename lua require 'function-wrapper'.rename()
  13. command! LspTypeDefinition lua require 'function-wrapper'.type_definition()
  14. command! LspWorkspaceSymbol lua require 'function-wrapper'.workspace_symbol()
  15. command! LspGotoNext lua require 'function-wrapper'.goto_next()
  16. command! LspGotoPrev lua require 'function-wrapper'.goto_prev()
  17. command! LspShowLineDiagnostics lua require 'function-wrapper'.show_line_diagnostics()