mirror of
https://github.com/nix-community/home-manager
synced 2025-01-11 11:39:49 +01:00
neomutt: Document how to bind Ctrl keys (#6254)
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
11ab08541e
commit
0d7908bd09
1 changed files with 5 additions and 1 deletions
|
@ -130,7 +130,11 @@ let
|
||||||
key = mkOption {
|
key = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "<left>";
|
example = "<left>";
|
||||||
description = "The key to bind.";
|
description = ''
|
||||||
|
The key to bind.
|
||||||
|
|
||||||
|
If you want to bind '\Cp' for example, which would be Ctrl + 'p', you need to escape twice: '\\Cp'!
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
action = mkOption {
|
action = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue