aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-09-17 00:18:14 +0000
committerGitHub <noreply@github.com>2019-09-17 00:18:14 +0000
commit1aadcee68a3857459499208c376ef687584f72b9 (patch)
tree32cd9dadff3af7cb7a14bf16a59625a90bc7b195 /nixos
parent602a39c31825629f03c7e65169f040d73305c3e7 (diff)
nixos/less: fix escape
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/less.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/less.nix b/nixos/modules/programs/less.nix
index e19935b77ca..75b3e707d57 100644
--- a/nixos/modules/programs/less.nix
+++ b/nixos/modules/programs/less.nix
@@ -54,8 +54,8 @@ in
type = types.attrsOf types.str;
default = {};
example = {
- h = "noaction 5\e(";
- l = "noaction 5\e)";
+ h = "noaction 5\\e(";
+ l = "noaction 5\\e)";
};
description = "Defines new command keys.";
};