Skip to content

Instantly share code, notes, and snippets.

View esco's full-sized avatar

Esco Obong esco

View GitHub Profile
{
"name": "express-device",
"author": {
"name": "Rodrigo Guerreiro",
"url": "@rguerreiro"
},
"description": "Browser detection library, built on top of express",
"keywords": [
"browser",
"mobile",
@esco
esco / gist:5787117
Created June 15, 2013 06:11
Navigate through tabs in SublimeText using super (cmd/ctrl) + left / right arrow keys. This overrides the original behavior of jumping to the beginning or end to the line. An alternative is to use the built in ctrl + a to jump to the beginning of the line and ctrl + z to jump to the end of the line.
[
{ "keys": ["super+right"], "command": "next_view" },
{ "keys": ["super+left"], "command": "prev_view" },
{ "keys": ["ctrl+z"], "command": "move_to", "args": {"to":"hardeol", "extend":false}}
]