# Be 8 bit clean.
set input-meta on
set output-meta on

# allow the use of the Home/End keys
"\e[1~": beginning-of-line
"\e[4~": end-of-line

# revert history browsing
"\e[A": next-history
"\e[B": previous-history

# allow the use of the Delete/Insert keys
"\e[3~": delete-char
"\e[2~": quoted-insert

# revert mappings for "page up" and "page down" to step to the beginning/end of
# the history
"\e[5~": end-of-history
"\e[6~": beginning-of-history
