termux-tools: Depend on termux-am (fixes #2101)
[termux-packages] / packages / readline / inputrc
1 # Be 8 bit clean.
2 set input-meta on
3 set output-meta on
4
5 # some defaults / modifications for the emacs mode
6 $if mode=emacs
7
8 # allow the use of the Home/End keys
9 "\e[1~": beginning-of-line
10 "\e[2~": quoted-insert
11
12 # allow the use of the Delete/Insert keys
13 "\e[3~": delete-char
14 "\e[4~": end-of-line
15
16 # mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving
17 "\e[1;5C": forward-word
18 "\e[1;5D": backward-word
19 "\e[5C": forward-word
20 "\e[5D": backward-word
21
22 "\e[8~": end-of-line
23
24 $endif