diff options
| author | Robert Günzler <r@gnzler.io> | 2022-11-04 16:45:08 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-11-18 18:37:24 +0100 |
| commit | ed2f15096a654e2c1b8fb7023c255edd244592b0 (patch) | |
| tree | 7a9df23b3e1ecb034e80a26a3ce6a09383c1c09f /.vim/lua/plugins.lua | |
| parent | f12bbfd3b7a393e38ef4f270fca25acd50d5ebc6 (diff) | |
vim: properly set code action handler
Diffstat (limited to '')
| -rw-r--r-- | .vim/lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index ed98de4..16c4c57 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -409,7 +409,7 @@ require('packer').startup({function() use {'weilbith/nvim-code-action-menu', config = function() - vim.lsp.buf.code_action = require('code_action_menu').open_code_action_menu + vim.lsp.handlers['textDocument/codeAction'] = require('code_action_menu').open_code_action_menu end} use {'jose-elias-alvarez/null-ls.nvim', -- {{{ |