Skip to content

Commit 81bf131

Browse files
authored
Fix code_actions on neovim nightly (0.10.0) (#1613)
* Fix code_actions on neovim nightly (0.10.0) Fix issue jose-elias-alvarez/null-ls.nvim#1611 * Fix code style * Fix codestyle missing , * Fix one more missing , for codestyle
1 parent aac27a1 commit 81bf131

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lua/null-ls/rpc.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ local capabilities = {
2929
-- TODO: investigate if we can use this
3030
resolveProvider = false,
3131
},
32-
executeCommandProvider = true,
32+
executeCommandProvider = {
33+
commands = {
34+
methods.internal.CODE_ACTION,
35+
},
36+
},
3337
documentFormattingProvider = true,
3438
documentRangeFormattingProvider = true,
3539
completionProvider = {

0 commit comments

Comments
 (0)