-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_inputrc
38 lines (31 loc) · 1000 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
# from http://www.macosxhints.com/comment.php?mode=view&cid=72187
#
# include the following line in your .bash_profile
#
#export INPUTRC=~/.inputrc
# this makes the "delete" key work rather than
# just entering a ~
"\e[3~": delete-char
# these allow you to use ctrl+left/right arrow keys
# to jump the cursor over words
"\e[5C": forward-word
"\e[5D": backward-word
# these allow you to start typing a command and
# use the up/down arrow to auto complete from
# commands in your history
"\e[B": history-search-forward
"\e[A": history-search-backward
# this lets you hit tab to auto-complete a file or
# directory name ignoring case
set completion-ignore-case On
# I'm not sure what keys these are!
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[2~": quoted-insert
# make bash prompt behave like Vi
#set editing-mode vi
# allows single tabbing to complete symlinked directories
set mark-directories On
set mark-symlinked-directories On