Why is codeaction not supported?
Closed this issue · 2 comments
ycycyyc commented
This plugin is very good, but it doesn't seem to support codeaction.
ojroques commented
Because unlike other LSP methods, we cannot redefine the handler for code actions: see here. There exists workarounds but I don't want to implement them into the plugin, it would complexify things too much. Check this plugin if you really want support for code actions.
Also I don't really see the point of fuzzy searching code actions anyway. I found it faster to select an action by typing its number in the default quickfix window than via FZF, because you don't really know which action is the one you want before reading all results.
ycycyyc commented
Thanks for the quick reply!