Skip to content

Commit

Permalink
Change the default "scroll up" / "scroll down" hotkeys - fixes #6878
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Sep 4, 2022
1 parent 9c7a1db commit 3090686
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tabby-terminal/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export class TerminalConfigProvider extends ConfigProvider {
'⌘-Shift-I',
],
'scroll-to-top': ['Shift-PageUp'],
'scroll-up': ['PageUp'],
'scroll-down': ['PageDown'],
'scroll-up': ['⌥-PageUp'],
'scroll-down': ['⌥-PageDown'],
'scroll-to-bottom': ['Shift-PageDown'],
},
},
Expand Down Expand Up @@ -161,8 +161,8 @@ export class TerminalConfigProvider extends ConfigProvider {
'Ctrl-Shift-I',
],
'scroll-to-top': ['Ctrl-PageUp'],
'scroll-up': ['PageUp'],
'scroll-down': ['PageDown'],
'scroll-up': ['Alt-PageUp'],
'scroll-down': ['Alt-PageDown'],
'scroll-to-bottom': ['Ctrl-PageDown'],
},
},
Expand Down Expand Up @@ -207,8 +207,8 @@ export class TerminalConfigProvider extends ConfigProvider {
'Ctrl-Shift-I',
],
'scroll-to-top': ['Ctrl-PageUp'],
'scroll-up': ['PageUp'],
'scroll-down': ['PageDown'],
'scroll-up': ['Alt-PageUp'],
'scroll-down': ['Alt-PageDown'],
'scroll-to-bottom': ['Ctrl-PageDown'],
},
},
Expand Down

0 comments on commit 3090686

Please sign in to comment.