-
Notifications
You must be signed in to change notification settings - Fork 0
/
.inputrc
56 lines (46 loc) · 1.18 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
45
46
47
48
49
50
51
52
53
54
55
56
# Best goddamn inputrc in the whole world.
# Author: Seth House <[email protected]>
# Last Modified: $Date: 2007-11-25 01:53:32 -0700 (Sun, 25 Nov 2007) $
# Woo!
#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
# bindings
"\C-p": history-search-backward
"\C-n": history-search-forward
"\M-p": history-search-backward
"\M-n": history-search-forward
"\ep": history-search-backward
"\en": history-search-forward
"\C-l": clear-screen
"\C-w": backward-kill-word
$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
$endif
$if Bash
$endif
$if Python
$endif
# IPython needs this to appear at the bottom of the
# file for clear-screen to work
#set keymap vi