forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinputrc
More file actions
34 lines (25 loc) · 662 Bytes
/
inputrc
File metadata and controls
34 lines (25 loc) · 662 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
# Delete key
"\e[3~": delete-char
# Home and end
"\e[1~": beginning-of-line
"\e[4~"; end-of-line
# Ctrl+arrow cursor movement
"\e[5C": forward-word
"\e[5D": backward-word
"\e\e[C": forward-word
"\e\e[D": backward-word
# History completion
"\e[B": history-search-forward
"\e[A": history-search-backward
# Case-insensitive completion
set completion-ignore-case on
# Bell style
set bell-style none
# Editing mode
set editing-mode emacs
# Show ambiguous completions with one tab
set show-all-if-ambiguous on
# Append a slash to symlinked directory names on completion
set mark-symlinked-directories on
# Show extra stats for completion
set visible-stats on