diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-04-21 18:45:38 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2025-04-21 18:47:01 +0200 |
| commit | d1796795ddcb75dcdf8fc172504ef72fb6e32cb9 (patch) | |
| tree | 985db097ece9dc4ca2b4e0aa3c6cdfa511c855eb /lsp/basedpyright.lua | |
| parent | ci(lint): enforce "Lsp" command name prefix (diff) | |
| download | nvim-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/basedpyright.lua')
| -rw-r--r-- | lsp/basedpyright.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lsp/basedpyright.lua b/lsp/basedpyright.lua index bf31539d..f78bbd21 100644 --- a/lsp/basedpyright.lua +++ b/lsp/basedpyright.lua @@ -56,11 +56,11 @@ return { }, }, on_attach = function() - vim.api.nvim_buf_create_user_command(0, 'PyrightOrganizeImports', organize_imports, { + vim.api.nvim_buf_create_user_command(0, 'LspPyrightOrganizeImports', organize_imports, { desc = 'Organize Imports', }) - vim.api.nvim_buf_create_user_command(0, 'PyrightSetPythonPath', set_python_path, { + vim.api.nvim_buf_create_user_command(0, 'LspPyrightSetPythonPath', set_python_path, { desc = 'Reconfigure basedpyright with the provided python path', nargs = 1, complete = 'file', |
