Skip to content

Instantly share code, notes, and snippets.

View sjb-gist's full-sized avatar

Steve Beaulac sjb-gist

View GitHub Profile
@techleed
techleed / gist:3901196
Created October 16, 2012 18:50
Sublime Text 2: User Key Bindings
[
{ "keys": [",","x"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": [",","x"], "command": "exit_visual_mode",
@shawnoster
shawnoster / msbuild.sublime-build
Created May 9, 2012 05:04
msbuild build system for Sublime Text 2
{
"cmd": ["msbuild"],
"path": "C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319",
"working_dir": "${project_path:${folder}}",
"file_regex": "^ (.*)\\(([0-9]*),([0-9]*)"
}