Advertisement
devinteske

My .screenrc

May 13th, 2018
639
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #
  2. # Change default escape character from ^A to ^O (allowing ^A to bleed-through
  3. # to readline(3), which performs a jump to the beginning of the line).
  4. #
  5. # Other bad choices:
  6. # ^A is start-of-line ^L is terminal refresh
  7. # ^B is page-up in vi ^M is RETURN
  8. # ^C is cancel ^N is next-line in vi
  9. # ^D is logout ^Q freezes shell
  10. # ^E is end-of-line ^R is reverse-search
  11. # ^F is page-down in vi ^S unfreezes shell
  12. # ^G is status in vi ^T is SIGINFO
  13. # ^H is backspace ^V is type-literal
  14. # ^I is tab ^X follewed by ^E is invoke editor
  15. # ^J is ENTER ^W is delete-word
  16. # ^K is delete-right ^Z is suspend
  17. #
  18. # NB: 2nd-letter `a' denotes [default] character used to quit screen
  19. #
  20. escape ^Oa
  21.  
  22. #
  23. # Scrollback
  24. #
  25. termcapinfo xterm* ti@:te@
  26. defscrollback 10000
  27.  
  28. #
  29. # Make shell command a login shell by preceding with `-'
  30. #
  31. shell -bash
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement