Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.2 KiB

  1. This program provides a scroll back buffer for a terminal like st(1). It
  2. should run on any Unix-like system.
  3. At the moment it is in an experimental state. Its not recommended for
  4. productive use.
  5. The initial version of this program is from Roberto E. Vargas Caballero:
  6. https://lists.suckless.org/dev/1703/31256.html
  7. What is the state of scroll?
  8. The project is faced with some hard facts, that our original plan is not doable
  9. as we thought in the first place:
  10. 1. [crtl]+[e] is used in emacs mode (default) on the shell to jump to the end
  11. of the line. But, its also used so signal a scroll down mouse event from
  12. terminal emulators to the shell an other programs.
  13. - A workaround is to use vi mode in the shell.
  14. - Or to give up mouse support (default behavior)
  15. 2. scroll could not handle backward cursor jumps and editing of old lines
  16. properly. We just handle current line editing and switching between
  17. alternative screens (curses mode). For a proper end user experience we
  18. would need to write a completely new terminal emulator like screen or tmux.
  19. What is the performance impact of scroll?
  20. indirect OpenBSD
  21. -------------------------------
  22. 0x 7.53 s
  23. 1x 10.10 s
  24. 2x 12.00 s
  25. 3x 13.73 s