-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.inputrc
31 lines (23 loc) · 903 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
30
31
#!/bin/sh
# Never ring any sort of bell.
set bell-style none
# Only prompt when there are more than this many completion candidates.
set completion-query-items 200
# Immediately add a trailing slash when autocompleting symlinks to directories.
set mark-symlinked-directories on
# Require an explicit '.' in order to match hidden files.
set match-hidden-files off
# Be more intelligent when autocompleting by also looking at the text after
# the cursor. (This is supported by the Readline used by Bash 4.)
set skip-completed-text on
# Show extra file information when completing, like `ls -F` does.
set visible-stats on
# Allow UTF-8 input and output, instead of showing stuff like $'\0123\0456'.
set input-meta on
set output-meta on
set convert-meta off
"\C-d": possible-completions
"\e[A": history-search-backward
"\e[B": history-search-forward
"\e[1;5D": backward-word
"\e[1;5C": forward-word