config.def.h 334 B

123456789
  1. /*
  2. * Define ESC seqences to use for scroll events.
  3. * Use "cat -v" to figure out favorit key combination.
  4. */
  5. #define KB_SCROLL_UP "\033[5;2~" /* [Shift] + [PageUP] */
  6. #define KB_SCROLL_DOWN "\033[6;2~" /* [Shift] + [PageDown] */
  7. #define MS_SCROLL_UP "\031" /* mouse wheel up */
  8. #define MS_SCROLL_DOWN "\005" /* mouse wheel Down */