feat(SublimeText2.UtilPackages): cache packages

This commit is contained in:
Iristyle
2013-04-04 08:54:47 -04:00
parent 1e6f643a1b
commit d65666cdfc
541 changed files with 26347 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
[
//AdvancedNewFile - https://github.com/xobb1t/Sublime-AdvancedNewFile
{ "keys": ["ctrl+alt+n"], "command": "advanced_new_file"},
//{ "keys": ["shift+ctrl+alt+n"], "command": "advanced_new_file", "args": {"is_python": true}},
{
"keys": ["tab"],
"command": "insert_best_completion",
"args": {"default": "", "exact": false},
"context": [
{ "key": "advanced_new_file_completion"},
{ "key": "setting.tab_completion", "operator": "equal", "operand": true },
{ "key": "last_command", "operator": "not_equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible" , "operator": "equal", "operand": false}
]
},
//Navigation History - https://github.com/timjrobinson/SublimeNavigationHistory
{ "keys": ["alt+left"], "command": "navigation_history_back"},
{ "keys": ["alt+right"], "command": "navigation_history_forward"},
//Recent Active Files - https://github.com/jugyo/SublimeRecentActiveFiles
{ "keys": ["ctrl+alt+shift+t"], "command": "recent_active_files" },
//Keymap Manager - https://github.com/welefen/KeymapManager
{ "keys": ["ctrl+alt+k"],"command": "keymap_manager" },
//MoveTab - https://github.com/SublimeText/MoveTab
{ "keys": ["ctrl+shift+end"], "command": "move_tab", "args": { "position": "999" }},
{ "keys": ["ctrl+shift+home"],"command": "move_tab","args": { "position": "0" }},
{ "keys": ["ctrl+shift+pageup"],"command": "move_tab","args": { "position": "-1" }},
{ "keys": ["ctrl+shift+pagedown"],"command": "move_tab","args": { "position": "+1" }},
//OpenRecentFiles - https://github.com/spadgos/sublime-OpenRecentFiles
{ "keys": ["ctrl+shift+t"], "command": "open_recent_files" },
//OpenSearchResult - https://github.com/abrookins/OpenSearchResult
{ "keys": ["ctrl+enter"], "command": "open_search_result", "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.find-in-files" }
]
},
//SideBarEnhancements - https://github.com/titoBouzout/SideBarEnhancements/
{ "keys": ["ctrl+t"], "command": "side_bar_new_file" },
{ "keys": ["f12"], "command": "side_bar_open_in_browser" , "args":{"paths":[], "type":"testing" }},
{ "keys": ["alt+f12"], "command": "side_bar_open_in_browser", "args":{"paths":[], "type":"production" }},
{ "keys": ["f2"], "command": "side_bar_rename" },
{ "keys": ["ctrl+alt+f"], "command": "side_bar_find_files_path_containing" },
{ "keys": ["ctrl+shift+r"], "command": "side_bar_move" },
//SublimeFiles - https://github.com/al63/SublimeFiles
{ "keys": ["shift+ctrl+alt+n"], "command": "sublime_files", "args": {"command":"navigate"}},
//Build system keybindings
{ "keys": ["f5"], "command": "build" }
]

View File

@@ -0,0 +1,36 @@
SublimeKeyMap.Util
==================
A simple repository used to host / share my customized Sublime Text 2 key bindings for Sublime utility plugins and themes
Designed to be incorporated into `Package Control.sublime-settings` like:
```json
{
"installed_packages":
[
"AdvancedNewFile",
"ConsoleExec",
"EncodingHelper",
"KeymapManager",
"MoveTab",
"Navigation History",
"Open Recent Files",
"OpenSearchResult",
"Package Control",
"RecentActiveFiles",
"Search Anywhere",
"SideBarEnhancements",
"Sublime Files",
"Theme - Soda"
],
"package_name_map": {
"SublimeKeyMap.Util": "ZZZ.EthanBrown.SublimeKeyMap.Util"
},
"repositories":
[
"https://github.com/abrookins/OpenSearchResult",
"https://github.com/Iristyle/SublimeKeyMap.Util"
]
}
```

View File

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