spacepaste

  1.  
  2. # /etc/inputrc
  3. # This file configures keyboard input for programs using readline.
  4. # See "man 3 readline" for more examples.
  5. # Configure the system bell. Options are none, visible, and audible.
  6. #set bell-style none
  7. # Enable 8 bit input.
  8. set meta-flag On
  9. set input-meta On
  10. set convert-meta Off
  11. set output-meta On
  12. # Set various nice escape sequences:
  13. "\eOd": backward-word
  14. "\eOc": forward-word
  15. # for linux console
  16. "\e[1~": beginning-of-line
  17. "\e[4~": end-of-line
  18. "\e[5~": beginning-of-history
  19. "\e[6~": end-of-history
  20. "\e[3~": delete-char
  21. "\e[2~": quoted-insert
  22. # for xterm
  23. "\eOH": beginning-of-line
  24. "\eOF": end-of-line
  25. # those two are for rxvt
  26. "\e[7~":beginning-of-line
  27. "\e[8~":end-of-line
  28. # for freebsd console
  29. "\e[H": beginning-of-line
  30. "\e[F": end-of-line
  31.