Mon, 17 Jan 2022 20:35:29 -0500
fix for change in vim-perl
782 | 1 | $include /etc/inputrc |
2 | ||
3 | set completion-ignore-case on | |
176 | 4 | |
782 | 5 | set expand-tilde on |
6 | set mark-directories on | |
7 | set show-all-if-ambiguous on | |
8 | set visible-stats on | |
9 | set completion-display-width 120 | |
10 | ||
11 | set bell-style none | |
12 | ||
13 | set input-meta on | |
14 | set output-meta on | |
176 | 15 | |
16 | # Incremental searching with Up and Down and Left and Right | |
17 | $if mode=emacs | |
18 | "\e[A": history-search-backward | |
19 | "\e[B": history-search-forward | |
20 | "\e\e[C": forward-word | |
21 | "\e\e[D": backward-word | |
22 | $endif | |
23 | ||
24 | $if Bash | |
25 | Space: magic-space | |
26 | $endif | |
27 |