aboutsummaryrefslogtreecommitdiff
path: root/inputrc
blob: e1df3a1e558a172edd717e0e175840c80c744630 (plain)
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
45
46
47
48
49
50
# Make Tab autocomplete regardless of filename case
set completion-ignore-case on

# List all matches in case multiple possible completions are possible
set show-all-if-ambiguous on

# If there are more than 200 possible completions for a word, ask to
# show them all
set completion-query-items 200

# Be more intelligent when autocompleting by also looking at the text
# after the cursor. For example, when the current line is "cd
# ~/src/mozil", and the cursor is on the "z", pressing Tab will not
# autocomplete it to "cd ~/src/mozillail", but to "cd ~/src/mozilla".
# (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

# Don't echo control characters into shell, such as ^C or ^D
set echo-control-characters off

# Use vi-mode at all readline-based prompts
set editing-mode vi

$if mode=vi
set keymap vi-insert

# Use the text that has already been typed as the prefix for
# searching through commands (i.e. more intelligent Up/Down behavior)
"\e[A": history-search-backward
"\e[B": history-search-forward
"\C-l": clear-screen

# Duplicate last inserted argument in prompt
"\C-e": "\C-w\C-y\C-y\C-h"
$endif
set bell-style none

"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[7~": beginning-of-line
"\e[8~": end-of-line
"\eOH": beginning-of-line
"\eOF": end-of-line
"\e[H": beginning-of-line
"\e[F": end-of-line
"\e[7~":beginning-of-line
"\e[8~":end-of-line