Skip to content

Instantly share code, notes, and snippets.

@danlamanna
Created November 21, 2011 14:12
Show Gist options
  • Save danlamanna/1382721 to your computer and use it in GitHub Desktop.
Save danlamanna/1382721 to your computer and use it in GitHub Desktop.
Keymap for SVN Plugin
[
{ "keys": ["shift+alt+a"],
"command": "subversion",
"args": {
"svn_command": "add",
"on_file": "False"
}
},
{ "keys": ["shift+alt+c"],
"command": "subversion",
"args": {
"svn_command": "commit",
"on_file": "False"
}
},
{ "keys": ["shift+alt+d"],
"command": "subversion",
"args": {
"svn_command": "delete",
"on_file": "False"
}
},
{ "keys": ["shift+alt+f"],
"command": "subversion",
"args": {
"svn_command": "diff",
"on_file": "False"
}
},
{ "keys": ["shift+alt+r"],
"command": "subversion",
"args": {
"svn_command": "revert",
"on_file": "False"
}
},
{ "keys": ["shift+alt+s"],
"command": "subversion",
"args": {
"svn_command": "status",
"on_file": "False"
}
},
{ "keys": ["shift+alt+u"],
"command": "subversion",
"args": {
"svn_command": "update",
"on_file": "False"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment