Last active
January 11, 2022 07:09
-
-
Save jyungtong/daecf8e3c4a5865b3ef462e82efd69d7 to your computer and use it in GitHub Desktop.
surfingkeys settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { map, unmap, mapkey, iunmap } = api; | |
settings.smoothScroll = false; | |
map('J', 'E'); | |
map('K', 'R'); | |
map('{', '<<'); | |
map('}', '>>'); | |
unmap('<Alt-p>'); | |
mapkey('p', '#3pin/unpin current tab', function() { | |
RUNTIME("togglePinTab"); | |
}); | |
settings.blocklistPattern = /.*docs.google.com.*|repl.it\/languages\/*|.*klsescreener.com\/v2\/charting.*|github.dev.*/i; | |
iunmap(":"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment