forked from andrei4ka/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.inputrc
More file actions
35 lines (29 loc) · 707 Bytes
/
Copy path.inputrc
File metadata and controls
35 lines (29 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
set bell-style none
set mark-symlinked-directories on
set editing-mode vi
set keymap vi-insert
set visible-stats on
set show-all-if-ambiguous on
set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
set mark-symlinked-directories on
$if mode=emacs
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": history-search-backward
"\e[6~": history-search-forward
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[3;3~": kill-word
$endif
$if mode=vi
set keymap vi-command
"gg": beginning-of-history
"G": end-of-history
set keymap vi-insert
"jj": vi-movement-mode
"\C-w": backward-kill-word
"\C-p": history-search-backward
$endif