visuals/indent-blankline: rename scope.showCurrContext to scope.enabled

This commit is contained in:
Frothy 2023-11-24 12:05:19 +03:00 committed by NotAShelf
parent 39e9e60386
commit 4453d5c9dd
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
3 changed files with 10 additions and 10 deletions

View file

@ -90,7 +90,7 @@ inputs: let
fillChar = null; fillChar = null;
eolChar = null; eolChar = null;
scope = { scope = {
showCurrContext = true; enabled = true;
}; };
}; };

View file

@ -33,7 +33,7 @@ in {
}, },
scope = { scope = {
enabled = ${boolToString cfg.indentBlankline.scope.showCurrContext}, enabled = ${boolToString cfg.indentBlankline.scope.enabled},
show_end = ${boolToString cfg.indentBlankline.scope.showEndOfLine} show_end = ${boolToString cfg.indentBlankline.scope.showEndOfLine}
}, },
} }

View file

@ -8,7 +8,7 @@
cfg = config.vim.visuals; cfg = config.vim.visuals;
in { in {
imports = [ imports = [
(mkRenamedOptionModule ["vim" "visuals" "indentBlankline" "showCurrContext"] ["vim" "visuals" "indentBlankline" "scope" "showCurrContext"]) (mkRenamedOptionModule ["vim" "visuals" "indentBlankline" "showCurrContext"] ["vim" "visuals" "indentBlankline" "scope" "enabled"])
(mkRenamedOptionModule ["vim" "visuals" "indentBlankline" "showEndOfLine"] ["vim" "visuals" "indentBlankline" "scope" "showEndOfLine"]) (mkRenamedOptionModule ["vim" "visuals" "indentBlankline" "showEndOfLine"] ["vim" "visuals" "indentBlankline" "scope" "showEndOfLine"])
(mkRemovedOptionModule ["vim" "visuals" "indentBlankline" "useTreesitter"] "`vim.visuals.indentBlankline.useTreesitter` has been removed upstream and can safely be removed from your configuration.") (mkRemovedOptionModule ["vim" "visuals" "indentBlankline" "useTreesitter"] "`vim.visuals.indentBlankline.useTreesitter` has been removed upstream and can safely be removed from your configuration.")
]; ];
@ -115,6 +115,13 @@ in {
}; };
scope = { scope = {
enabled = mkOption {
description = "Highlight current scope from treesitter";
type = types.bool;
default = config.vim.treesitter.enable;
defaultText = literalExpression "config.vim.treesitter.enable";
};
showEndOfLine = mkOption { showEndOfLine = mkOption {
description = '' description = ''
Displays the end of line character set by [](#opt-vim.visuals.indentBlankline.eolChar) instead of the Displays the end of line character set by [](#opt-vim.visuals.indentBlankline.eolChar) instead of the
@ -124,13 +131,6 @@ in {
default = cfg.indentBlankline.eolChar != null; default = cfg.indentBlankline.eolChar != null;
defaultText = literalExpression "config.vim.visuals.indentBlankline.eolChar != null"; defaultText = literalExpression "config.vim.visuals.indentBlankline.eolChar != null";
}; };
showCurrContext = mkOption {
description = "Highlight current context from treesitter";
type = types.bool;
default = config.vim.treesitter.enable;
defaultText = literalExpression "config.vim.treesitter.enable";
};
}; };
}; };