equal
deleted
inserted
replaced
15 |
15 |
16 # Display characters with the eighth bit set directly rather than as |
16 # Display characters with the eighth bit set directly rather than as |
17 # meta-prefixed characters. |
17 # meta-prefixed characters. |
18 set output-meta on |
18 set output-meta on |
19 |
19 |
|
20 # Ignore case (on/off). |
|
21 set completion-ignore-case on |
|
22 |
|
23 set completion-query-items 100 |
|
24 |
20 # First tab suggests ambiguous variants. |
25 # First tab suggests ambiguous variants. |
21 set show-all-if-ambiguous on |
26 set show-all-if-ambiguous on |
|
27 |
|
28 # If set to 'on', completed directory names have a slash appended. The default is 'on'. |
|
29 set mark-directories on |
|
30 |
|
31 # If set to 'on', a character denoting a file's type is appended to the |
|
32 # filename when listing possible completions. The default is 'off'. |
|
33 set visible-stats on |
22 |
34 |
23 # 'quoted-insert' binded to C-q or C-v by default, but C-q usually not worked |
35 # 'quoted-insert' binded to C-q or C-v by default, but C-q usually not worked |
24 # because it handled by terminal driver before readline. |
36 # because it handled by terminal driver before readline. |
25 C-v: quoted-insert |
37 C-v: quoted-insert |
26 |
38 |