Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

Commit

Permalink
Fix code_actions on neovim nightly (0.10.0) (#1613)
Browse files Browse the repository at this point in the history
* Fix code_actions on neovim nightly (0.10.0)

Fix issue #1611

* Fix code style

* Fix codestyle missing ,

* Fix one more missing , for codestyle
  • Loading branch information
samuelabreu authored Jul 3, 2023
1 parent aac27a1 commit 81bf131
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lua/null-ls/rpc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ local capabilities = {
-- TODO: investigate if we can use this
resolveProvider = false,
},
executeCommandProvider = true,
executeCommandProvider = {
commands = {
methods.internal.CODE_ACTION,
},
},
documentFormattingProvider = true,
documentRangeFormattingProvider = true,
completionProvider = {
Expand Down

0 comments on commit 81bf131

Please # to comment.