diff options
| author | stkhan <personal@slickd.xyz> | 2022-06-20 19:54:29 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-06-20 19:54:29 +0000 |
| commit | 4c40a4dc245f7715f4891ed02d71475628e7a959 (patch) | |
| tree | fa52419490b5a0d89d746f6e3a0b0c1e675b7726 /scroll-0.1/config.h | |
| parent | 513b0e238b98f72a01d740a0bd99a3739918645c (diff) | |
new directory structure
Diffstat (limited to 'scroll-0.1/config.h')
| -rw-r--r-- | scroll-0.1/config.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scroll-0.1/config.h b/scroll-0.1/config.h deleted file mode 100644 index 536db70..0000000 --- a/scroll-0.1/config.h +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Define ESC sequences to use for scroll events. - * Use "cat -v" to figure out favorite key combination. - * - * lines is the number of lines scrolled up or down. - * If lines is negative, it's the fraction of the terminal size. - */ - -struct rule rules[] = { - /* sequence event lines */ - {"\033[5;2~", SCROLL_UP, -1}, /* [Shift] + [PageUP] */ - {"\033[6;2~", SCROLL_DOWN, -1}, /* [Shift] + [PageDown] */ - /* mouse binding shadows ^E and ^Y, so it's disabled by default */ - //{"\031", SCROLL_UP, 1}, /* mouse wheel up */ - //{"\005", SCROLL_DOWN, 1}, /* mouse wheel Down */ -}; |