Skip to content

Commit

Permalink
nixos/less: fix escape
Browse files Browse the repository at this point in the history
  • Loading branch information
volth committed Sep 17, 2019
1 parent 602a39c commit 1aadcee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/programs/less.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
};
Expand Down

0 comments on commit 1aadcee

Please sign in to comment.