You can customize the border style of the buffer picker and its preview window using the winborder
option:
require("tiny-code-action").setup({
picker = {
"buffer",
opts = {
winborder = "single", -- or "rounded", "solid", etc.
}
}
})
If not set, it will fallback to the global vim.o.winborder
if available, otherwise defaults to "rounded"
.
A Neovim plugin that provides a simple way to run and visualize code actions.
Preview • Installation • Options • FAQ
Supported pickers:
vim.ui.select
fzf-lua
(with select
)telescope.nvim
snacks.nvim
buffer
(a minimal picker that uses buffer)The code action protocol is nearly fully implemented in this plugin, so you can use it with any language server, even with, like in the preview, Omnisharp which uses partial code actions.
[!WARNING] I have not tested on all LSP, so do not hesitate to open an issue if it doesn't work for you.
[!NOTE] This plugins comes with NerdFonts icons by default. If you don't want to use them, you can remove them from the
signs
option.
With Lazy.nvim:
{
"rachartier/tiny-code-action.nvim",
dependencies = {
{"nvim-lua/plenary.nvim"},
-- optional picker via telescope
{"nvim-telescope/telescope.nvim"},
-- optional picker via fzf-lua
{"ibhagwan/fzf-lua"},
-- .. or via snacks
{
"folke/snacks.nvim",
opts = {
terminal = {},
}
}
},
event = "LspAttach",
opts = {},
}
And add the following snippet to your keymaps:
vim.keymap.set("n", "<leader>ca", function()
require("tiny-code-action").code_action()
end, { noremap = true, silent = true })
[!NOTE] To use the delta backend you must install delta
[!WARNING] Due to some limitations, the
delta
backend can be slow if the action is really big. If you want optimal performance, use thevim
backend.
{
"rachartier/tiny-code-action.nvim",
dependencies = {
{"nvim-lua/plenary.nvim"},
},
event = "LspAttach",
opts = {
--- The backend to use, currently only "vim", "delta", "difftastic", "diffsofancy" are supported
backend = "vim",
-- The picker to use, "telescope", "snacks", "select", "buffer" are supported
-- And it's opts that will be passed at the picker's creation, optional
-- If you want to use the `fzf-lua` picker, you can simply set it to `select`
--
-- You can also set `picker = "<picker>"` without any opts.
--
-- For "buffer" picker, you can set the `opts` to the following:
-- {
-- hotkeys = true -- Enable hotkeys for the buffer picker to quickly select an action
--
-- hotkeys_mode = "text_diff_based" | "text_based" | "sequential"
-- -- sequential = a, b, c...
-- -- text_based = "Fix all" => "f", "Fix others" => "o" (first non assigned letter of the action)
-- -- text_diff_based = "Fix all" => "fa", "Fix others" => "fo" smarter than text_based
-- auto_preview = false -- Enable auto preview of the code action
-- position = "cursor" | "center"
--
-- winborder = "single" -- Set the window border style ("single", "rounded", "solid", etc.)
-- -- Fallback order: opts.winborder > vim.o.winborder > "rounded"
-- }
picker = "telescope",
backend_opts = {
delta = {
-- Header from delta can be quite large.
-- You can remove them by setting this to the number of lines to remove
header_lines_to_remove = 4,
-- The arguments to pass to delta
-- If you have a custom configuration file, you can set the path to it like so:
-- args = {
-- "--config" .. os.getenv("HOME") .. "/.config/delta/config.yml",
-- }
args = {
"--line-numbers",
},
},
difftastic = {
header_lines_to_remove = 1,
-- The arguments to pass to difftastic
args = {
"--color=always",
"--display=inline",
"--syntax-highlight=on",
},
},
diffsofancy = {
header_lines_to_remove = 4,
}
},
-- The icons to use for the code actions
-- You can add your own icons, you just need to set the exact action's kind of the code action
-- You can set the highlight like so: { link = "DiagnosticError" } or like nvim_set_hl ({ fg ..., bg..., bold..., ...})
signs = {
quickfix = { "", { link = "DiagnosticWarning" } },
others = { "", { link = "DiagnosticWarning" } },
refactor = { "", { link = "DiagnosticInfo" } },
["refactor.move"] = { "", { link = "DiagnosticInfo" } },
["refactor.extract"] = { "", { link = "DiagnosticError" } },
["source.organizeImports"] = { "", { link = "DiagnosticWarning" } },
["source.fixAll"] = { "", { link = "DiagnosticError" } },
["source"] = { "", { link = "DiagnosticError" } },
["rename"] = { "", { link = "DiagnosticWarning" } },
["codeAction"] = { "", { link = "DiagnosticWarning" } },
},
}
}
You can filter the code actions by setting the filters
option.
{
str = "..." -- Filter to title
kind = "refactor" -- Filter to the kind
client = "omnisharp" -- Filter to the client
line = 10 -- Filter to the line number
}
Example:
require("tiny-code-action").code_action({
filters = {
kind = "refactor",
str = "Wrap"
}
})
delta
configuration here: config_path
to the path of your configuration file.