# This file is read by the 'readline' library # (the library which bash uses for its command- # line editing facility) # Make Delete work "\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 # Make Insert actually useful "\e[2~": paste-from-clipboard # Ignore case for the command-line-completion # functionality. set completion-ignore-case On # Add a "/" at the end of a symlink-to-dir completion. set mark-symlinked-directories on