Advertisement
Guest User

Untitled

a guest
Mar 15th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. # Begin /etc/inputrc
  2. # Modified by Chris Lynn <roryo@roryo.dynup.net>
  3. # Allow the command prompt to wrap to the next line
  4. set horizontal-scroll-mode Off
  5. # Enable 8bit input
  6. set meta-flag On
  7. set input-meta On
  8. # Turns off 8th bit stripping
  9. set convert-meta Off
  10. # Keep the 8th bit for display
  11. set output-meta On
  12. # none, visible or audible
  13. set bell-style none
  14. # All of the following map the escape sequence of the value
  15. # contained in the 1st argument to the readline specific functions
  16. "\eOd": backward-word
  17. "\eOc": forward-word
  18. # for linux console
  19. "\e[1~": beginning-of-line
  20. "\e[4~": end-of-line
  21. "\e[5~": beginning-of-history
  22. "\e[6~": end-of-history
  23. "\e[3~": delete-char
  24. "\e[2~": quoted-insert
  25. # for xterm
  26. "\eOH": beginning-of-line
  27. "\eOF": end-of-line
  28. # for Konsole
  29. "\e[H": beginning-of-line
  30. "\e[F": end-of-line
  31. # End /etc/inputrc
  32. EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement