-
Notifications
You must be signed in to change notification settings - Fork 2
/
inputrc
42 lines (34 loc) · 950 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
32
33
34
35
36
37
38
39
40
41
42
# Best goddamn inputrc in the whole world.
# Author: Seth House <[email protected]>
#
# After using this, you can enter into vi mode when you are in rails console or mysql console.
set editing-mode vi
# Adds punctuation as word delimiters
set bind-tty-special-chars off
# Completion Options
set page-completions on
set completion-ignore-case on
set completion-query-items 200
set show-all-if-ambiguous on
set show-all-if-unmodified on
set visible-stats on
# Useful stuff for UTF-8
set meta-flag on
set input-meta on
set output-meta on
set convert-meta off
$if mode=vi
set keymap vi-command
"gg": beginning-of-history
"G": end-of-history
set keymap vi-insert
"\C-l": clear-screen
"\C-w": backward-kill-word
# auto-complete from the history
"\C-p": history-search-backward
"\C-n": history-search-forward
"\C-a": beginning-of-line
"\C-e": end-of-line
$endif
# file for clear-screen to work
set keymap vi