1 # Include system wide settings which are ignored
 
   2 # by default if one has their own .inputrc
 
   5 # https://cirw.in/blog/bracketed-paste
 
   6 set enable-bracketed-paste on
 
   8 # Don't echo ^C etc (new in bash 4.1)
 
   9 # Note this only works for the command line itself,
 
  10 # not if already running a command.
 
  11 set echo-control-characters off
 
  13 # TAB completion stuff
 
  15 set show-all-if-ambiguous on
 
  17 # Append a slash when completing symlinked directories
 
  18 set mark-symlinked-directories on
 
  20 # A self expanding, auto-correcting alias for sudo.
 
  25 # alternate mappings for "page up" and "page down" to search the history
 
  26 "\e[5~": history-search-backward
 
  27 "\e[6~": history-search-forward