You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
489 B
25 lines
489 B
7 years ago
|
# Be 8 bit clean.
|
||
|
set input-meta on
|
||
|
set output-meta on
|
||
|
|
||
|
# some defaults / modifications for the emacs mode
|
||
|
$if mode=emacs
|
||
|
|
||
|
# allow the use of the Home/End keys
|
||
|
"\e[1~": beginning-of-line
|
||
|
"\e[2~": quoted-insert
|
||
|
|
||
|
# allow the use of the Delete/Insert keys
|
||
|
"\e[3~": delete-char
|
||
|
"\e[4~": end-of-line
|
||
|
|
||
|
# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving
|
||
|
"\e[1;5C": forward-word
|
||
|
"\e[1;5D": backward-word
|
||
|
"\e[5C": forward-word
|
||
|
"\e[5D": backward-word
|
||
|
|
||
|
"\e[8~": end-of-line
|
||
|
|
||
|
$endif
|