1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

readline: fix example

This commit is contained in:
Robert Helgesson 2020-02-02 00:58:06 +01:00
parent 70af3b126a
commit a4a07ba996
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 5 additions and 3 deletions

View file

@ -30,7 +30,9 @@ in {
bindings = mkOption {
default = { };
type = types.attrsOf types.str;
example = { "\\C-h" = "backward-kill-word"; };
example = literalExample ''
{ "\\C-h" = "backward-kill-word"; }
'';
description = "Readline bindings.";
};