Skip to content

Instantly share code, notes, and snippets.

@elena-kolevska
Created February 9, 2014 18:41
Show Gist options
  • Save elena-kolevska/8904039 to your computer and use it in GitHub Desktop.
Save elena-kolevska/8904039 to your computer and use it in GitHub Desktop.
My Sublime Keymap
[{
"keys": [
"ctrl+shift+z"
],
"command": "expand_as_you_type",
"context": [
{
"operand": false,
"operator": "equal",
"match_all": true,
"key": "setting.is_widget"
},
{
"match_all": true,
"key": "emmet_action_enabled.expand_as_you_type"
}
]
},
{ "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" },
{ "keys": ["super+w"], "command": "prompt_select_workspace" },
{
"keys": ["super+1"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1]]
}
},
{
"keys": ["super+2"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["ctrl+k", "ctrl+m"],
"command": "toggle_minimap"
},
//Sidebar Enhancements Plugin
{ "keys": ["ctrl+n", "ctrl+f"],
"command": "side_bar_new_file" ,
},
{ "keys": ["f2"],
"command": "side_bar_rename" ,
},
{
"keys": ["ctrl+f", "ctrl+p"],
"command": "side_bar_find_in_project",
"args": {"paths": []}
},
{
"keys": ["ctrl+f", "ctrl+t"],
"command": "side_bar_find_in_parent",
"args": {"paths": []}
},
//Markdown Preview Plugin
{
"keys": ["alt+m"],
"command": "markdown_preview",
"args": {"target": "browser", "parser":"markdown"}
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment