Skip to content

Instantly share code, notes, and snippets.

@schmitmd
Last active January 23, 2022 00:43
Show Gist options
  • Save schmitmd/3aa579c9c49fef567745860082f442d1 to your computer and use it in GitHub Desktop.
Save schmitmd/3aa579c9c49fef567745860082f442d1 to your computer and use it in GitHub Desktop.
SurfingKeys Config file
// Set capital F to link-hint open new (inactive) tab
api.map('F', 'gf');
// Set u to reopen closed tab
api.map('u', 'X');
// Set H to go back in page history
api.map('H', 'S');
// Set L to go forward in page history
api.map('L', 'D');
// Set d to close current tab
api.map('d', 'x');
// Set "gt" and "gT" to go to next tab and previous tab
//Map O to edit current URL then go to it
api.map('O', ';U');
// Set hint character set
api.Hints.setCharacters("astgioeny");
// Remove default Google search
api.unmap('og');
// Set default search engine to DuckDuckGo
settings.defaultSearchEngine = 'd';
// put gaming sites here in ignore list
settings.blocklistPattern = /.*stadia\.google\.com.*|.*play\.geforcenow\.com.*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment