# Make readline() func understand Cyrillic (bash etc)
set meta-flag on
set convert-meta off
set output-meta on
set editing-mode emacs
# I am terminally bored of all VTnnn emulators, all slightly different
# Backspace,Delete,Home,End are working in console _and_ xterm.
# Miracle :)
#
"\e[3~": delete-char
# this is actually equivalent to "\C-?": delete-char
# VT
"\e[1~": beginning-of-line
"\e[4~": end-of-line
# kvt
"\e[H":beginning-of-line
"\e[F":end-of-line
# rxvt and konsole (i.e. the KDE-app...)
"\e[7~":beginning-of-line
"\e[8~":end-of-line
