nvim-code-action-menu icon indicating copy to clipboard operation
nvim-code-action-menu copied to clipboard

Pop-up menu for code actions to show meta-information and diff preview

Results 27 nvim-code-action-menu issues
Sort by recently updated
recently updated
newest added

Self report 😬 So if someone stumbles over it, this is already known. I'm open for suggestions whats the best solution for this issue. It is possible to calculate the...

Neovim version: `NVIM v0.7.0-dev+715-g1f3c0593e` LSP server: `gopls` My config: ``` vim.g.code_action_menu_show_details = false vim.g.code_action_menu_show_diff = false ``` ![image](https://user-images.githubusercontent.com/190107/146086518-fb569ffe-bc5b-4d45-a1b2-b587572d091f.png) When selecting `Fill log.TextFormatter`, nothing happens. However when using `vim.lsp.buf.code_action()`, the struct...

I am trying to implement some code/a plugin for live visualizing rust-analyzer structural search and replace. (https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/dev/lsp-extensions.md#structural-search-replace-ssr). It basically uses LSP to do 'smarter' search and replace using semantic information...

Is there a reason that this plugin doesn't provide a handler for registration with `vim.lsp.handlers['textDocument/codeAction']`? An example of a plugin that provides this is [nvim-lsputils](https://github.com/RishabhRD/nvim-lsputils).

``` E5108: Error executing lua ...ode_action_menu/lsp_objects/edits/text_document_edit.lua:93: attempt to get length of local 'last_original_complete_line' (a nil value) ``` This happens while running `:CodeActionMenu` on a `use` statement in a rust file....

- add user configuration - support coc as source - use `vim.notify` instead of `vim.api.nvim_notify`

Hi there - this looks great. Does it only integrate with the native LSP? If I run code actions from Coc I get a bunch but if I run `CodeActionMenu`...

enhancement
help wanted

## Context The order of stacked windows is: menu, details, diff. The stacking window width was set sequentially for each window and relied only on the buffer content of the...

If I issue `:CodeActionMenu` in a Python buffer with ruff-lsp attached, Neovim becomes completely unresponsive. I don't experience this issue when using `vim.lsp.buf.code_action()` I am wondering if it has to...