Skip to content

Instantly share code, notes, and snippets.

@tadast
Created January 6, 2012 10:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tadast/1569954 to your computer and use it in GitHub Desktop.
Save tadast/1569954 to your computer and use it in GitHub Desktop.
useful sublime text 2 stuff

== Key Bindings

[
  //https://github.com/alexstaubo/sublime_text_alternative_autocompletion
  { "keys": ["escape"], "command": "alternative_autocomplete", "context":
    [
      { "key": "num_selections", "operator": "equal", "operand": 1 },
      { "key": "overlay_visible", "operator": "equal", "operand": false },
      { "key": "panel_visible", "operator": "equal", "operand": false }
    ]
  },
  { "keys": ["shift+escape"], "command": "alternative_autocomplete", "args": {"cycle": "previous"}, "context":
    [
      { "key": "num_selections", "operator": "equal", "operand": 1 },
      { "key": "overlay_visible", "operator": "equal", "operand": false },
      { "key": "panel_visible", "operator": "equal", "operand": false }
    ]
  },
  // reveal current file in sidebar
  { "keys": ["super+ctrl+r"], "command": "reveal_in_side_bar" },
  //
  { "keys": ["super+shift+t"], "command": "open_recent_file", "args": {"index": 0 } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment