aboutsummaryrefslogtreecommitdiffstats
path: root/_inputrc
blob: 7d93f5d08ab1c2c0d9a0f9374623f11ace7625ce (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
#
# ~/.inputrc
#
# readline configurations
#
# Reference:
# [1] ArchWiki - Readline
#     https://wiki.archlinux.org/index.php/Readline
#
# Aaron LI
# 2015-09-26
#

#$include /etc/inputrc

# vi mode
set editing-mode vi
$if mode=vi
set keymap vi-command
# these are for vi-command mode
"\e[A": history-search-backward
"\e[B": history-search-forward
set keymap vi-insert
# these are for vi-insert mode
"\e[A": history-search-backward
"\e[B": history-search-forward
$endif


#  vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=readline: #