mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-02 09:04:54 +02:00
plugins/dap-virtual-text: migrate to mkNeovimPlugin
This commit is contained in:
parent
9eae5db29a
commit
32aa73af47
6 changed files with 142 additions and 137 deletions
68
plugins/by-name/dap-virtual-text/default.nix
Normal file
68
plugins/by-name/dap-virtual-text/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib.nixvim) defaultNullOpts;
|
||||
in
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "dap-virtual-text";
|
||||
moduleName = "nvim-dap-virtual-text";
|
||||
packPathName = "nvim-dap-virtual-text";
|
||||
package = "nvim-dap-virtual-text";
|
||||
|
||||
maintainers = [ lib.maintainers.khaneliman ];
|
||||
|
||||
settingsOptions = {
|
||||
enabled_commands = defaultNullOpts.mkBool true ''
|
||||
Create commands `DapVirtualTextEnable`, `DapVirtualTextDisable`, `DapVirtualTextToggle`.
|
||||
|
||||
(`DapVirtualTextForceRefresh` for refreshing when debug adapter did not notify its termination).
|
||||
'';
|
||||
|
||||
highlight_changed_variables = defaultNullOpts.mkBool true ''
|
||||
Highlight changed values with `NvimDapVirtualTextChanged`, else always `NvimDapVirtualText`.
|
||||
'';
|
||||
|
||||
highlight_new_as_changed = defaultNullOpts.mkBool false ''
|
||||
Highlight new variables in the same way as changed variables (if highlight_changed_variables).
|
||||
'';
|
||||
|
||||
show_stop_reason = defaultNullOpts.mkBool true "Show stop reason when stopped for exceptions.";
|
||||
|
||||
commented = defaultNullOpts.mkBool false "Prefix virtual text with comment string.";
|
||||
|
||||
only_first_definition = defaultNullOpts.mkBool true "Only show virtual text at first definition (if there are multiple).";
|
||||
|
||||
all_references = defaultNullOpts.mkBool false "Show virtual text on all references of the variable (not only definitions).";
|
||||
|
||||
clear_on_continue = defaultNullOpts.mkBool false "Clear virtual text on `continue` (might cause flickering when stepping).";
|
||||
|
||||
display_callback = defaultNullOpts.mkLuaFn ''
|
||||
function(variable, buf, stackframe, node, options)
|
||||
if options.virt_text_pos == 'inline' then
|
||||
return ' = ' .. variable.value
|
||||
else
|
||||
return variable.name .. ' = ' .. variable.value
|
||||
end
|
||||
end,
|
||||
'' "A callback that determines how a variable is displayed or whether it should be omitted.";
|
||||
|
||||
virt_text_pos = defaultNullOpts.mkStr "vim.fn.has 'nvim-0.10' == 1 and 'inline' or 'eol'" ''
|
||||
Position of virtual text, see `:h nvim_buf_set_extmark()`.
|
||||
Default tries to inline the virtual text. Use 'eol' to set to end of line.
|
||||
'';
|
||||
|
||||
all_frames = defaultNullOpts.mkBool false "Show virtual text for all stack frames not only current.";
|
||||
|
||||
virt_lines = defaultNullOpts.mkBool false "Show virtual lines instead of virtual text (will flicker!).";
|
||||
|
||||
virt_text_win_col = lib.nixvim.mkNullOrOption lib.types.int ''
|
||||
Position the virtual text at a fixed window column (starting from the first text column).
|
||||
See `:h nvim_buf_set_extmark()`.
|
||||
'';
|
||||
};
|
||||
|
||||
# NOTE: Renames added in https://github.com/nix-community/nixvim/pull/2897 (2025-01-26)
|
||||
imports = [ ./deprecations.nix ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue