diff --git a/modules/programs/kakoune.nix b/modules/programs/kakoune.nix index d22f4c5ff..3464e5df4 100644 --- a/modules/programs/kakoune.nix +++ b/modules/programs/kakoune.nix @@ -313,30 +313,6 @@ let ''; }; - changeColors = mkOption { - type = types.bool; - default = true; - description = '' - Change color palette. - ''; - }; - - wheelDownButton = mkOption { - type = types.nullOr types.str; - default = null; - description = '' - Button to send for wheel down events. - ''; - }; - - wheelUpButton = mkOption { - type = types.nullOr types.str; - default = null; - description = '' - Button to send for wheel up events. - ''; - }; - shiftFunctionKeys = mkOption { type = types.nullOr types.ints.unsigned; default = null; @@ -346,14 +322,6 @@ let should be `12`. ''; }; - - useBuiltinKeyParser = mkOption { - type = types.bool; - default = false; - description = '' - Bypass ncurses key parser and use an internal one. - ''; - }; }; } ); @@ -594,13 +562,9 @@ let "terminal_status_on_top=${if (statusLine == "top") then "true" else "false"}" "terminal_assistant=${assistant}" "terminal_enable_mouse=${if enableMouse then "true" else "false"}" - "terminal_change_colors=${if changeColors then "true" else "false"}" - "${optionalString (wheelDownButton != null) "terminal_wheel_down_button=${wheelDownButton}"}" - "${optionalString (wheelUpButton != null) "terminal_wheel_up_button=${wheelUpButton}"}" "${optionalString ( shiftFunctionKeys != null ) "terminal_shift_function_key=${toString shiftFunctionKeys}"}" - "terminal_builtin_key_parser=${if useBuiltinKeyParser then "true" else "false"}" ]; userModeString =