-
Notifications
You must be signed in to change notification settings - Fork 0
/
.inputrc
44 lines (31 loc) · 1.53 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
# first tab suggests ambiguous variants
#set show-all-if-ambiguous on
#
# http://gnu.cict.fr/software/bash/manual/html_node/Readline-Init-File-Syntax.html
#
# This alters the default behavior of the completion functions. If set to ‘on’, words which have more than one possible completion cause the matches to be listed immediately instead of ringing the bell. The default value is ‘off’.
#set show-all-if-ambiguous on
# This alters the default behavior of the completion functions in a fashion similar to show-all-if-ambiguous. If set to ‘on’, words which have more than one possible completion without any possible partial completion (the possible completions don't share a common prefix) cause the matches to be listed immediately instead of ringing the bell. The default value is ‘off’.
set show-all-if-unmodified on
# bell setup
set bell-style none
set prefer-visible-bell
# show file types while completing
set visible-stats on
# Be 8 bit clean.
set input-meta on
set output-meta on
# To allow the use of 8bit-characters like the german umlauts, comment out
# the line below. However this makes the meta key not work as a meta key,
# which is annoying to those which don't need to type in 8-bit characters.
set convert-meta off
# ask before displaying more than 500 completions
set completion-query-item 500
set meta-flag on
set mark-symlinked-directories on
# All of the following map the escape sequence of the
# value contained inside the 1st argument to the
# readline specific functions
"\eOd": backward-word
"\eOc": forward-word
# ---