-
Notifications
You must be signed in to change notification settings - Fork 0
/
.inputrc
29 lines (24 loc) · 851 Bytes
/
.inputrc
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
# Cycle through completions with <TAB>
TAB:menu-complete
# If tab complete is abimguous, show completions on first <TAB>, not second.
# Use first <TAB> to show completions, and second <TAB> to complete.
set show-all-if-ambiguous on
set menu-complete-display-prefix on
set colored-completion-prefix on
# Append trailing slashes to completed directories
set mark-symlinked-directories on
set mark-directories on
# Mark different filetypes (symlink, executable, etc) differently
set colored-stats on
# set visible-stats on
set blink-matching-paren on
# <C-l> - clear screen
# <C-x-e> - open line in EDITOR
# <C-a> - move to start of line
# <C-e> - move to end of line
# <C-k> - kill from cursor to end of line
# <C-u> - kill from cursor to start of line
"\C-f":forward-word
"\C-b":backward-word
# <C-w> - kill previous word
# <M-d> - kill next word