feat(SublimeText2.GitPackages): cache packages

This commit is contained in:
Iristyle
2013-04-04 08:55:33 -04:00
parent c3efdad2c2
commit c0f9c6d45a
109 changed files with 15317 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
[
// Git Chords - https://github.com/kemayo/sublime-text-2-git
{ "keys": ["ctrl+shift+g", "ctrl+shift+a"], "command": "git_add_choice" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+b"], "command": "git_branch" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+c"], "command": "git_commit" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+d"], "command": "git_diff" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+f"], "command": "git_fetch" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+g"], "command": "git_graph" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+h"], "command": "git_commit_history" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+l"], "command": "git_log" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+m"], "command": "git_merge" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+n"], "command": "git_new_branch" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+p"], "command": "git_pull_current_branch" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+q"], "command": "git_quick_commit" },
// dangerous
// { "keys": ["ctrl+shift+g", "ctrl+shift+r"], "command": "git_reset_hard_head" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+s"], "command": "git_status" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+t"], "command": "git_new_tag" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+z"], "command": "git_commit_amend" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+up"], "command": "git_push" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+down"], "command": "git_pull" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+right"], "command": "git_stash" },
{ "keys": ["ctrl+shift+g", "ctrl+shift+left"], "command": "git_stash_pop" },
//Modific - https://github.com/gornostal/Modific
{ "keys": ["ctrl+alt+c"], "command": "show_original_part" },
//using this binding with https://github.com/braindamageinc/SublimeHttpRequester
//{ "keys": ["ctrl+alt+r"], "command": "replace_modified_part" },
//Git plugin does this already
//{ "keys": ["ctrl+alt+d"], "command": "show_diff" },
{ "keys": ["ctrl+alt+u"], "command": "uncommitted_files" }
//{ "keys": ["ctrl+shift+pageup"], "command": "jump_between_changes", "args": {"direction": "prev"} },
//{ "keys": ["ctrl+shift+pagedown"], "command": "jump_between_changes", "args": {"direction": "next"} }
]

View File

@@ -0,0 +1,27 @@
SublimeKeyMap.Git
=================
A simple repository used to host / share my customized Sublime Text 2 key bindings for Git plugins
Designed to be incorporated into `Package Control.sublime-settings` like:
```json
{
"installed_packages":
[
"EditorConfig",
"Git",
"GitHubinator",
"Modific",
"SideBarGit",
"sublime-github"
],
"package_name_map": {
"SublimeKeyMap.Git": "ZZZ.EthanBrown.SublimeKeyMap.Git"
},
"repositories":
[
"https://github.com/Iristyle/SublimeKeyMap.Git"
]
}
```

View File

@@ -0,0 +1 @@
{"url": "https://github.com/Iristyle/SublimeKeyMap.Git", "version": "2013.03.17.19.57.57", "description": "A simple repository used to host / share my customized Sublime Text 2 key bindings for Git plugins"}