aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/svlangserver.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-04-21 18:45:38 +0200
committerJustin M. Keyes <justinkz@gmail.com>2025-04-21 18:47:01 +0200
commitd1796795ddcb75dcdf8fc172504ef72fb6e32cb9 (patch)
tree985db097ece9dc4ca2b4e0aa3c6cdfa511c855eb /lsp/svlangserver.lua
parentci(lint): enforce "Lsp" command name prefix (diff)
downloadnvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.tar
nvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.tar.gz
nvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.tar.bz2
nvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.tar.lz
nvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.tar.xz
nvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.tar.zst
nvim-lspconfig-d1796795ddcb75dcdf8fc172504ef72fb6e32cb9.zip
fix: use "Lsp" prefix for config-defined commands
Diffstat (limited to 'lsp/svlangserver.lua')
-rw-r--r--lsp/svlangserver.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lsp/svlangserver.lua b/lsp/svlangserver.lua
index 381e8f89..6121ea9b 100644
--- a/lsp/svlangserver.lua
+++ b/lsp/svlangserver.lua
@@ -35,10 +35,10 @@ return {
},
},
on_attach = function()
- vim.api.nvim_buf_create_user_command(0, 'SvlangserverBuildIndex', build_index, {
+ vim.api.nvim_buf_create_user_command(0, 'LspSvlangserverBuildIndex', build_index, {
desc = 'Instructs language server to rerun indexing',
})
- vim.api.nvim_buf_create_user_command(0, 'SvlangserverReportHierarchy', report_hierarchy, {
+ vim.api.nvim_buf_create_user_command(0, 'LspSvlangserverReportHierarchy', report_hierarchy, {
desc = 'Generates hierarchy for the given module',
})
end,