1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/readline/using-all-options.txt
Nathan Henrie f3824311a1
readline: Add support for keynames (#3947)
Kenames like `Control-n` or `meta-p` should not be quoted or they don't work.

Keyseqs like `\C-p` or `ab` must continue to be quoted.

See also: https://www.gnu.org/software/bash/manual/html_node/Readline-Init-File-Syntax.html

Fixes https://github.com/nix-community/home-manager/issues/3611
2023-05-04 19:39:46 +02:00

13 lines
237 B
Plaintext

# Generated by Home Manager.
$include /etc/inputrc
set bell-style audible
set completion-map-case on
set completion-prefix-display-length 2
Control-p: "whups"
"\C-h": backward-kill-word
$if mode=emacs
"\e[1~": beginning-of-line
$endif