We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfcfe84 commit e2587cfCopy full SHA for e2587cf
Extensions/keyboardShortcut.js
@@ -40,8 +40,8 @@
40
j: { callback: () => createScrollCallback(SCROLL_STEP) },
41
k: { callback: () => createScrollCallback(-SCROLL_STEP) },
42
43
- // Scroll to the top ('g') or bottom ('Shift+g') of the page
44
- g: { callback: () => scrollToPosition(0) },
+ // Scroll to the top ('gg') or bottom ('Shift+g') of the page
+ "g g": { callback: () => scrollToPosition(0) },
45
"shift+g": { callback: () => scrollToPosition(1) },
46
47
// Shift + H and Shift + L to go back and forward page
0 commit comments