kakoune: Remove unused options
This commit is contained in:
parent
23ff9821bc
commit
20ca27d9ba
|
@ -267,30 +267,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;
|
||||
|
@ -300,14 +276,6 @@ let
|
|||
should be `12`.
|
||||
'';
|
||||
};
|
||||
|
||||
useBuiltinKeyParser = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Bypass ncurses key parser and use an internal one.
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
default = null;
|
||||
|
@ -534,16 +502,8 @@ let
|
|||
}"
|
||||
"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 = mode:
|
||||
|
|
Loading…
Reference in a new issue