From 63be580ac4407996255bc5651cd5cd4a66b2f6a8 Mon Sep 17 00:00:00 2001 From: Alexander Nortung Date: Sun, 22 Jan 2023 20:31:46 +0100 Subject: [PATCH] bufferline: deprecated option --- plugins/bufferlines/bufferline.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/plugins/bufferlines/bufferline.nix b/plugins/bufferlines/bufferline.nix index 55347cc4..4e9d2705 100644 --- a/plugins/bufferlines/bufferline.nix +++ b/plugins/bufferlines/bufferline.nix @@ -64,12 +64,13 @@ in description = "Command or function run when middle clicking on a buffer."; default = null; }; - # indicatorIcon = mkOption { - # type = types.nullOr types.str; - # description = "The Icon shown as a indicator for buffer. Changing it is NOT recommended, - # this is intended to be an escape hatch for people who cannot bear it for whatever reason."; - # default = null; - # }; + # is deprecated, but might still work + indicatorIcon = mkOption { + type = types.nullOr types.str; + description = "The Icon shown as a indicator for buffer. Changing it is NOT recommended, + this is intended to be an escape hatch for people who cannot bear it for whatever reason."; + default = null; + }; bufferCloseIcon = mkOption { type = types.nullOr types.str; description = "The close icon for each buffer.";