diff --git a/options.html b/options.html index 95a24d5..dabc2d5 100644 --- a/options.html +++ b/options.html @@ -32211,7 +32211,7 @@ boolean
vim.visuals.indentBlankline.debounce
+ vim.visuals.indentBlankline.setupOpts.debounce
vim.visuals.indentBlankline.eolChar
+ vim.visuals.indentBlankline.setupOpts.indent.char
Character at end of line
+Character(s) for indentation guide
Type: -null or string
- -Default:
-"↴"
Declared by:
-
-
-<nvf/modules/plugins/visuals/visuals.nix>
-
- |
vim.visuals.indentBlankline.fillChar
-
-
-Character to fill indents
- -Type: -null or string
- -Default:
-"⋅"
Declared by:
-
-
-<nvf/modules/plugins/visuals/visuals.nix>
-
- |
vim.visuals.indentBlankline.indent.char
-
-
-Character for indentation line
- -Type: -string
+string or list of stringDefault:
"│"
vim.visuals.indentBlankline.listChar
+ vim.visuals.indentBlankline.setupOpts.indent.highlight
Character for indentation line
+The highlight group(s) applied to the indentation guide.
See :help ibl.config.indent.highlight
.
Type: -string
+null or string or list of stringDefault:
-"│"
null
Declared by:
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.indent.repeat_linebreak
+
+
+Repeat indentation guides on wrapped lines
+ +Type: +boolean
+ +Default:
+true
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.indent.smart_indent_cap
+
+
+Caps the number of indentation levels based on surrounding code
+ +Type: +boolean
+ +Default:
+true
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.indent.tab_char
+
+
+Character(s) for tab indentation guide.
See :help ibl.config.indent.tab_char
.
Type: +null or string or list of string
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.enabled
vim.visuals.indentBlankline.scope.showEndOfLine
+ vim.visuals.indentBlankline.setupOpts.scope.char
Displays the end of line character set by vim.visuals.indentBlankline.eolChar
instead of the
-indent guide on line returns.
The character(s) for the scope indentation guide
Type: -boolean
+string or list of stringDefault:
-config.vim.visuals.indentBlankline.eolChar != null
config.vim.visuals.indentBlankline.setuopOpts.indent.char
Declared by:
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.exclude.node_type
+
+
+Nodes to ignore in scope checking, per language.
*
can be used as a wildcard for every language.
Type: +attribute set of list of string
+ +Default:
{
+ "*" = [
+ "source_file"
+ "program"
+ ];
+ lua = [
+ "chunk"
+ ];
+ python = [
+ "module"
+ ];
+}
+
+
+Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.highlight
+
+
+The highlight group(s) applied to the scope.
See :help
ibl.config.scope.highlight`.
Type: +null or string or list of string
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.include.node_type
+
+
+Additional nodes to be used for scope checking, per language
+ +Type: +attribute set of list of string
+ +Default:
+{ }
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.injected_languages
+
+
+Check for injected languages (treesitter)
+ +Type: +boolean
+ +Default:
+config.vim.treesitter.enable
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.priority
+
+
+Virtual text priority for the scope
+ +Type: +signed integer
+ +Default:
+1024
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.show_end
+
+
+Show an underline on the last line of the scope
+ +Type: +boolean
+ +Default:
+false
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.show_exact_scope
+
+
+Show the scope underline at the exact start of the scope, even if that’s to the right of the indentation guide
+ +Type: +boolean
+ +Default:
+false
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.scope.show_start
+
+
+Show an underline on the first line of the scope
+ +Type: +boolean
+ +Default:
+false
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.viewport_buffer.max
vim.visuals.indentBlankline.viewportBuffer.min
+ vim.visuals.indentBlankline.setupOpts.viewport_buffer.min
Default:
30
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.whitespace.highlight
+
+
+The highlight group(s) applied to whitespace.
See :help ibl.config.whitespace.highlight
.
Type: +null or string or list of string
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/visuals/visuals.nix>
+
+ |
vim.visuals.indentBlankline.setupOpts.whitespace.remove_blankline_trail
+
+
+Remove trailing whitespace on blanklines
+ +Type: +boolean
+ +Default:
+true
Declared by:
diff --git a/release-notes.html b/release-notes.html
index 6c0a667..d621d44 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -148,7 +148,7 @@ from anything to a submodule<
group for |