├── tests ├── __init__.py └── test.py ├── .gitattributes ├── .hgignore ├── .gitignore ├── .travis.yml ├── readme.creole └── repositories.json /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf 2 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax:glob 2 | .git/ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .hg 3 | *.pyc 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - "3.3" 4 | #command to run tests 5 | script: nosetests 6 | -------------------------------------------------------------------------------- /readme.creole: -------------------------------------------------------------------------------- 1 | = Sublime Package Control Default Channel 2 | 3 | The {{{repositories.json}}} file contains a list of Package Control 4 | repositories for use with the Package Control package manager for Sublime 5 | Text 2. It is published at https://sublime.wbond.net/repositories.json and is 6 | included with Package Control as the default channel. 7 | 8 | Please be sure to follow the instructions at 9 | http://wbond.net/sublime_packages/package_control/package_developers to help 10 | the process of adding your package go smoothly. -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- 1 | import json 2 | import unittest 3 | from collections import OrderedDict 4 | 5 | # Only run these using `notetests` (or `python -m unittest`) from the root directory 6 | 7 | 8 | # No need to check for this because all the other tests would fail anyway 9 | # class TestValidity(unittest.TestCase): 10 | # def test_json_is_valid(self): 11 | # fp = open("repositories.json") 12 | # json.load(fp) 13 | 14 | 15 | class TestOrder(unittest.TestCase): 16 | # Do not limit the list comparison to 600 chars (for more detailed debugging) 17 | maxDiff = None 18 | 19 | def setUp(self): 20 | self.j = json.load(open("repositories.json"), object_pairs_hook=OrderedDict) 21 | 22 | def test_repositories_in_order(self): 23 | repos = self.j['repositories'] 24 | # Remove "https://github.com/SublimeText" at the top because it is purposely not in order 25 | del repos[0] 26 | self.assertEqual(repos, sorted(repos, key=str.lower)) 27 | 28 | def test_package_names_in_order(self): 29 | map_packages = list(self.j['package_name_map'].keys()) 30 | self.assertEqual(map_packages, sorted(map_packages, key=str.lower)) 31 | 32 | def test_renamed_packages_in_order(self): 33 | ren_packages = list(self.j['renamed_packages'].keys()) 34 | self.assertEqual(ren_packages, sorted(ren_packages, key=str.lower)) 35 | -------------------------------------------------------------------------------- /repositories.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "1.2", 3 | "repositories": [ 4 | "https://github.com/SublimeText", 5 | "http://release.latexing.com/packages.json", 6 | "http://release.sublimegit.net/packages.json", 7 | "http://sublime.wbond.net/packages.json", 8 | "http://wuub.net/packages.json", 9 | "https://bitbucket.org/abraly/zap-gremlins", 10 | "https://bitbucket.org/artyom_smirnov/sublimetext2-packages/raw/master/packages.json", 11 | "https://bitbucket.org/asmodai/hexcode", 12 | "https://bitbucket.org/asmodai/shaderlanguages", 13 | "https://bitbucket.org/atroxell/html-compress-and-replace", 14 | "https://bitbucket.org/bgs_public/papyrus", 15 | "https://bitbucket.org/CDuke/sublime-tfs", 16 | "https://bitbucket.org/Clams/pasteselonclick", 17 | "https://bitbucket.org/Clams/sublimepastecolumn", 18 | "https://bitbucket.org/Clams/sublimesystemverilog", 19 | "https://bitbucket.org/DanielSiepmann/mercurial-for-sublime", 20 | "https://bitbucket.org/DanielSiepmann/typo3-fluid-snippets", 21 | "https://bitbucket.org/do/smartmovetotheeol", 22 | "https://bitbucket.org/dotCypress/coffeelint", 23 | "https://bitbucket.org/dotCypress/haskellbuddy", 24 | "https://bitbucket.org/esquivias/sublime-aml", 25 | "https://bitbucket.org/hmml/jsonlint", 26 | "https://bitbucket.org/hullabaloo/sublime-http-response-headers-snippets", 27 | "https://bitbucket.org/inkytonik/scalaworksheet", 28 | "https://bitbucket.org/jjones028/p4sublime/raw/tip/packages.json", 29 | "https://bitbucket.org/klorenz/projectspecific", 30 | "https://bitbucket.org/klorenz/syntaxhighlighttools", 31 | "https://bitbucket.org/klorenz/wrapcommand", 32 | "https://bitbucket.org/lewisjosh/buffersbackup", 33 | "https://bitbucket.org/markstahler/insert-nums", 34 | "https://bitbucket.org/muttley/sublimetext.blitzmax/raw/tip/packages.json", 35 | "https://bitbucket.org/nwjlyons/copy-file-name", 36 | "https://bitbucket.org/nwjlyons/google-search", 37 | "https://bitbucket.org/pcaro90/html-crush-switch", 38 | "https://bitbucket.org/PhillSparks/sublimesourcetree", 39 | "https://bitbucket.org/pjv/setdjangosyntax", 40 | "https://bitbucket.org/rablador/quickref", 41 | "https://bitbucket.org/rablador/whocalled", 42 | "https://bitbucket.org/ralmn/symfonytools-for-sublimetext-2", 43 | "https://bitbucket.org/rbadmaev/sublime_file_switcher", 44 | "https://bitbucket.org/StephaneBunel/pythonpep8autoformat", 45 | "https://bitbucket.org/thejeshgn/hg4subl", 46 | "https://bitbucket.org/trooper/statusbarextension", 47 | "https://bitbucket.org/Tumbo/bootstrap-jade", 48 | "https://github.com/06wj/cocos2d_lua_snippets", 49 | "https://github.com/315234/MinimalFortran", 50 | "https://github.com/a1fred/SublimeGoogle", 51 | "https://github.com/aaronpowell/sublime-jquery-snippets", 52 | "https://github.com/aaronpowell/Sublime-KnockoutJS-Snippets", 53 | "https://github.com/achayan/sublimePyQtSearch", 54 | "https://github.com/adamchainz/SublimeFiglet", 55 | "https://github.com/adamchainz/SublimeHTMLMustache", 56 | "https://github.com/adamchainz/SublimeSwitchViewInGroup", 57 | "https://github.com/adampresley/sublime-blogify", 58 | "https://github.com/adampresley/sublime-debugkiller", 59 | "https://github.com/adampresley/sublime-fillcfquery", 60 | "https://github.com/adampresley/sublime-js-minify", 61 | "https://github.com/adampresley/sublime-view-in-browser", 62 | "https://github.com/adzenith/CopyEdit", 63 | "https://github.com/aery32/sublime-aery32", 64 | "https://github.com/agibsonsw/AndyEdits", 65 | "https://github.com/agibsonsw/AndyJS2", 66 | "https://github.com/agibsonsw/AndyPHP", 67 | "https://github.com/agibsonsw/AndyPython", 68 | "https://github.com/agibsonsw/HTMLAttributes", 69 | "https://github.com/agibsonsw/QuickPrint", 70 | "https://github.com/akira-cn/sublime-gbk", 71 | "https://github.com/akira-cn/sublime-v8", 72 | "https://github.com/akrabat/SublimeFunctionNameDisplay", 73 | "https://github.com/al63/SublimeFiles", 74 | "https://github.com/alefragnani/Sublime-Ant-Buildfile", 75 | "https://github.com/alek-sys/ChangeTracker", 76 | "https://github.com/alek-sys/sublimetext_indentxml", 77 | "https://github.com/AlexanderBrevig/sublime-Spark", 78 | "https://github.com/AlexanderZaytsev/neat-sass-snippets", 79 | "https://github.com/AlexanderZaytsev/SublimeText2RailsFileSwitcher", 80 | "https://github.com/alexandresalome/sublime-alom", 81 | "https://github.com/alexeyza/sublime-exampleoverflow", 82 | "https://github.com/alexnj/SublimeOnSaveBuild", 83 | "https://github.com/alexpls/Rails-Latest-Migration", 84 | "https://github.com/alexstrat/PEGjs.tmbundle", 85 | "https://github.com/alienhard/SublimeAllAutocomplete", 86 | "https://github.com/alimony/sublime-sort-numerically", 87 | "https://github.com/allanhortle/Centurion", 88 | "https://github.com/AllStruck/Sublime-Text-2-Revert-All-Files", 89 | "https://github.com/ALLZ/hex-bin_system", 90 | "https://github.com/ALLZ/hextoASCII", 91 | "https://github.com/alnkpa/sublimeprolog", 92 | "https://github.com/AlphawolfWMP/sublime-text-2-wpseek", 93 | "https://github.com/ambethia/Sublime-Loom", 94 | "https://github.com/ameyp/CscopeSublime", 95 | "https://github.com/amireh/SwitchScript", 96 | "https://github.com/amitsnyderman/sublime-smarty", 97 | "https://github.com/amokan/ST2-Backbone.Marionette", 98 | "https://github.com/andrewescott/WoWXMLForSublimeText", 99 | "https://github.com/Anomareh/PHP-Twig.tmbundle", 100 | "https://github.com/aparajita/Cappuccino-Sublime", 101 | "https://github.com/Apathetic012/JustPaste", 102 | "https://github.com/apex2060/xli-templateize", 103 | "https://github.com/aphex/SuperAnt", 104 | "https://github.com/ariatemplates/sublime-ariatemplates-snippets", 105 | "https://github.com/ariatemplates/sublime-esformatter", 106 | "https://github.com/arnoldclark/ac-ruby-snippets", 107 | "https://github.com/aroscoe/Hex-to-RGBA", 108 | "https://github.com/artemk/Sublime-Apidock", 109 | "https://github.com/artkorsun/DelphiStyleBookmarks", 110 | "https://github.com/astronaughts/SublimeOpenFromPath", 111 | "https://github.com/astronaughts/SublimePHPBuiltinWebServer", 112 | "https://github.com/astropanic/Compline", 113 | "https://github.com/asux/sublime-capybara-snippets", 114 | "https://github.com/atadams/Hex-to-HSL-Color", 115 | "https://github.com/atombender/sublime_text_alternative_autocompletion", 116 | "https://github.com/austinhappel/sublime-csslint", 117 | "https://github.com/axel22/sublime-javap", 118 | "https://github.com/Azd325/sublime-text-caniuse", 119 | "https://github.com/aziz/knockdown", 120 | "https://github.com/aziz/PlainTasks", 121 | "https://github.com/azzip/SublimeFeelingLucky", 122 | "https://github.com/b-g/processing-sublime", 123 | "https://github.com/b3ni/Sublime-Fabric", 124 | "https://github.com/badsyntax/SassBeautify", 125 | "https://github.com/balajithota85/sublime_scaffolding", 126 | "https://github.com/balazstth/subl-esp", 127 | "https://github.com/bartTC/SubDpaste", 128 | "https://github.com/bbonora/SublimeCMSMadeSimple", 129 | "https://github.com/bcharbonnier/SublimeFileSync", 130 | "https://github.com/belike81/Sublime-File-Navigator", 131 | "https://github.com/benjamin-smith/sublime-text-silverstripe", 132 | "https://github.com/benmatselby/sublime-phpcs", 133 | "https://github.com/benmatselby/sublime-phpdocumentor", 134 | "https://github.com/benmatselby/sublime-pman", 135 | "https://github.com/benschwarz/sublime-bower", 136 | "https://github.com/Benvie/JavaScriptNext.tmLanguage", 137 | "https://github.com/benweier/PresetCommand", 138 | "https://github.com/benweier/Schemr", 139 | "https://github.com/benweier/Themr", 140 | "https://github.com/berendbaas/sublime_splittobuffer", 141 | "https://github.com/berfarah/LESS-build-sublime", 142 | "https://github.com/bernatfortet/sublime-frontend-delight", 143 | "https://github.com/bfad/Sublime-Lasso", 144 | "https://github.com/bgreenlee/sublime-github", 145 | "https://github.com/biermeester/Pylinter", 146 | "https://github.com/billymoon/LoremIpsum", 147 | "https://github.com/billymoon/Stylus", 148 | "https://github.com/billymoon/Sublime-Pipe-Dream", 149 | "https://github.com/bistory/Sublime-Minifier", 150 | "https://github.com/bit-part/MTML-ST2", 151 | "https://github.com/bit-part/PowerMTML-ST2", 152 | "https://github.com/bit101/STProjectMaker", 153 | "https://github.com/bitbonsai/JSHint-Inline", 154 | "https://github.com/bizoo/MultiTaskBuild", 155 | "https://github.com/bizoo/SortTabs", 156 | "https://github.com/bjorhn/Sublime-VDF-Languages", 157 | "https://github.com/bkeller2/Mplus", 158 | "https://github.com/blackjk3/threejs-sublime", 159 | "https://github.com/blastmann/ScriptOgrSender", 160 | "https://github.com/bliker/laravel4-snippets", 161 | "https://github.com/bluegray/Highlight-Mixed-Whitespace", 162 | "https://github.com/bmc/ST2SyntaxFromFileName", 163 | "https://github.com/bnlucas/SassBuilder", 164 | "https://github.com/bnu/sublime-xpressengine", 165 | "https://github.com/bobthecow/sublime-sane-snippets", 166 | "https://github.com/bohdon/sublimeAlternateVIMNavigation", 167 | "https://github.com/borist/SublimePaneNavigation", 168 | "https://github.com/borysf/Sublimerge", 169 | "https://github.com/BoundInCode/AutoFileName", 170 | "https://github.com/BoundInCode/Display-Functions", 171 | "https://github.com/BoundInCode/st2-refresh-theme", 172 | "https://github.com/bradleyboy/TidyTabs-Sublime", 173 | "https://github.com/bradsokol/VcsGutter", 174 | "https://github.com/braindamageinc/SublimeHttpRequester", 175 | "https://github.com/brandonhilkert/TomDoc-Sublime", 176 | "https://github.com/briancavalier/textmate-freemarker-bundle", 177 | "https://github.com/BrianGilbert/Sublime-Text-2-Goto-Drupal-API", 178 | "https://github.com/brianriley/sublime-dpaste", 179 | "https://github.com/brynbellomy/Sublime-Aqueducts", 180 | "https://github.com/buymeasoda/soda-theme", 181 | "https://github.com/cabaret/html-email-snippets", 182 | "https://github.com/cabeca/SublimeChef", 183 | "https://github.com/cafarm/aqua-theme", 184 | "https://github.com/caiogondim/js-console-sublime-snippets", 185 | "https://github.com/caiogondim/js-patterns-sublime-snippets", 186 | "https://github.com/cakephp/cakephp-tmbundle", 187 | "https://github.com/carlcalderon/sublime-color-schemes", 188 | "https://github.com/carlo/sublime-underscorejs-snippets", 189 | "https://github.com/castiron/sublime-jquery-coffee", 190 | "https://github.com/catalinc/WebSearch", 191 | "https://github.com/cbumgard/SublimeListenr", 192 | "https://github.com/ccampbell/sublime-smart-match", 193 | "https://github.com/ccreutzig/sublime-MuPAD", 194 | "https://github.com/Centny/GoGdb", 195 | "https://github.com/cezarsa/sublime-sparql-runner", 196 | "https://github.com/cgutierrez/JsMinifier", 197 | "https://github.com/chadrien/package-bundler", 198 | "https://github.com/chagel/itodo", 199 | "https://github.com/chaosphere2112/TextCommands", 200 | "https://github.com/charlesroper/DobDark-Theme", 201 | "https://github.com/chiappone/Sublime-SBT-Runner", 202 | "https://github.com/chipotle/BBCode", 203 | "https://github.com/Chris---/LaTeX-cwl", 204 | "https://github.com/Chris---/SublimeText-Calendar-Week", 205 | "https://github.com/Chris---/SublimeText-LaTeX-Blindtext", 206 | "https://github.com/Chris---/SublimeText-Preference-Helper", 207 | "https://github.com/chriskempson/base16-textmate", 208 | "https://github.com/chrislongo/Pig", 209 | "https://github.com/chrislongo/QuickThemes", 210 | "https://github.com/chrokh/csharp-build-singlefile-sublime-text-2", 211 | "https://github.com/Cipscis/Papyrus_Assembly", 212 | "https://github.com/claudiosmweb/wordpress-readme-to-markdown", 213 | "https://github.com/clemos/haxe-sublime-bundle", 214 | "https://github.com/clintberry/sublime-text-2-ini", 215 | "https://github.com/closureplease/sublime-google-closure-snippets", 216 | "https://github.com/clslrns/bitrix-painkiller", 217 | "https://github.com/cluther/SublimeZenoss", 218 | "https://github.com/cockscomb/SublimeMakeExecutable", 219 | "https://github.com/cockscomb/SublimePerldoc", 220 | "https://github.com/codecarson/SublimeSuperSelect", 221 | "https://github.com/CodeEffect/BoundKeys", 222 | "https://github.com/CodeEffect/FindSelected", 223 | "https://github.com/codeivate/codeivate-st", 224 | "https://github.com/compleatang/Legal-Markdown-Sublime", 225 | "https://github.com/compleatang/Legal-Snippets-Sublime", 226 | "https://github.com/compleatang/sublimetext-pastepdf", 227 | "https://github.com/condemil/Gist", 228 | "https://github.com/contradictioned/mips-syntax", 229 | "https://github.com/coretick/SimpleTestingSublime", 230 | "https://github.com/cpojer/grid6-sublime", 231 | "https://github.com/CraigWilliams/BeautifyRuby", 232 | "https://github.com/CraigWilliams/TestChooser", 233 | "https://github.com/crazybyte/SublimeReadOnlyBuffer", 234 | "https://github.com/croach/SublimeHideTabs", 235 | "https://github.com/CrypticTemple/sublime-xml-guesser", 236 | "https://github.com/cschubiner/Sublime-Text-2-Color-Schemes", 237 | "https://github.com/csscomb/CSScomb-for-Sublime", 238 | "https://github.com/cthackers/SublimeGoBuild", 239 | "https://github.com/ctruett/monokai-blueberry", 240 | "https://github.com/cyphactor/sublime_guard", 241 | "https://github.com/cyrilf/Sublimipsum", 242 | "https://github.com/d0ugal/RstPreview", 243 | "https://github.com/d3th/sublime-text2-yii-docs", 244 | "https://github.com/daaain/Handlebars", 245 | "https://github.com/dacap/sublime-shrink-whitespaces", 246 | "https://github.com/dafrancis/Sublime-Text--cdnjs", 247 | "https://github.com/damien-biasotto/Help", 248 | "https://github.com/DamnWidget/SublimePySide", 249 | "https://github.com/dangelov/hasher", 250 | "https://github.com/danielfrey/sublime-cucumber-step-finder", 251 | "https://github.com/danielhopkins/sublime-view-movement", 252 | "https://github.com/danielsd/ASPComment", 253 | "https://github.com/danpe/QuickRails", 254 | "https://github.com/danro/LESS-sublime", 255 | "https://github.com/danro/refined-theme", 256 | "https://github.com/DaQuirm/base64-fold", 257 | "https://github.com/daris/sublime-kwrite-color-scheme", 258 | "https://github.com/darkdelphin/Html-compressor", 259 | "https://github.com/darrenderidder/Sublime-JSLint", 260 | "https://github.com/darryllawson/SublimeTWiki", 261 | "https://github.com/dart-lang/dart-sublime-bundle", 262 | "https://github.com/datevid/sublime-text-doctypes", 263 | "https://github.com/dave-f/udp-trace", 264 | "https://github.com/davepeck/DirectorySettings", 265 | "https://github.com/davezatch/Media-Query-Snippets", 266 | "https://github.com/davidjrice/sublime-eco", 267 | "https://github.com/davidpeckham/FilterLines", 268 | "https://github.com/davidrios/jade-tmbundle", 269 | "https://github.com/davisagli/SublimePythonCoverage", 270 | "https://github.com/daylerees/colour-schemes", 271 | "https://github.com/dbaines/DotNetNuke-SublimeText-2-Snippets", 272 | "https://github.com/dbousamra/sublime-rst-completion", 273 | "https://github.com/dbp/sublime-rust", 274 | "https://github.com/deadfoxygrandpa/Elm.tmLanguage", 275 | "https://github.com/dedg3/sublime-magento-TemplateCopy", 276 | "https://github.com/demon386/SmartMarkdown", 277 | "https://github.com/dentedpixel/Unity3d-LeanTween-Snippets", 278 | "https://github.com/derekchiang/Sublime-CoffeeScript-Formatter", 279 | "https://github.com/dev4dev/blade-snippets", 280 | "https://github.com/devtellect/sublime-jquery-mobile-snippets", 281 | "https://github.com/devtellect/sublime-twitter-bootstrap-snippets", 282 | "https://github.com/dexnode/sublime-yii-snippets", 283 | "https://github.com/dgjnpr/subl.slax.package", 284 | "https://github.com/dgrebb/ASCII-Comment-Snippets", 285 | "https://github.com/dhodges/StepList", 286 | "https://github.com/dhoelzgen/iced-coffee-script-tmbundle", 287 | "https://github.com/diemer/RubyMotionSublimeCompletions", 288 | "https://github.com/diestrin/nodejsLauncher", 289 | "https://github.com/digoangeline/CoreBuilder_SublimeText", 290 | "https://github.com/Dillonb/SublimeSourcePawn", 291 | "https://github.com/Dimillian/Sublime-Hacker-News-Reader", 292 | "https://github.com/DisposaBoy/GoSublime", 293 | "https://github.com/disq/HighlightWhitespaces", 294 | "https://github.com/Dixens/sublime-text-pyrocms-snippets", 295 | "https://github.com/DJHoltkamp/Sublime-Moai-Debugger", 296 | "https://github.com/djjcast/mirodark-st2", 297 | "https://github.com/djjcast/sublime-ToggleMinimapOnScroll", 298 | "https://github.com/dnstbr/sublpress", 299 | "https://github.com/dobarkod/DjangoNoseTestRunner", 300 | "https://github.com/dotCypress/GitHubMarkdownPreview", 301 | "https://github.com/dotmaster/SublimeExpandSelectionToLineBefore", 302 | "https://github.com/doublerebel/filezilla_import", 303 | "https://github.com/dougalsutherland/sublime-stan", 304 | "https://github.com/draffter/FollowFunctionPHP", 305 | "https://github.com/dreadatour/Flake8Lint", 306 | "https://github.com/dreadatour/Pep8Lint", 307 | "https://github.com/dreadatour/RPMSpec", 308 | "https://github.com/drewda/cucumber-sublime2-bundle", 309 | "https://github.com/drhayes/sublime-impactjs", 310 | "https://github.com/drikin/OpenFileList", 311 | "https://github.com/drslump/sublime-boo", 312 | "https://github.com/duereg/sublime-jsvalidate", 313 | "https://github.com/duydao/Text-Pastry", 314 | "https://github.com/dylan-lang/dylan.tmbundle", 315 | "https://github.com/dz0ny/LiveReload-sublimetext2", 316 | "https://github.com/dzhibas/SublimePrettyJson", 317 | "https://github.com/eBookArchitects/Incrementor", 318 | "https://github.com/ecornell/Sublime-MoonScript", 319 | "https://github.com/edankwan/Exec-Parser-Sublime-Plugin", 320 | "https://github.com/eddorre/SublimeERB", 321 | "https://github.com/edgar/RubyCheckOnSave", 322 | "https://github.com/edubkendo/sublime-coffeescript-function-finder", 323 | "https://github.com/edubkendo/SublimeJRubyFXML", 324 | "https://github.com/ehamiter/ST2-GitHubinator", 325 | "https://github.com/ehuss/Sublime-Column-Select", 326 | "https://github.com/ehuss/Sublime-Wrap-Plus", 327 | "https://github.com/eibbors/Bubububububad", 328 | "https://github.com/ejoubaud/SublimeTabsLimiter", 329 | "https://github.com/eladyarkoni/MySignaturePlugin", 330 | "https://github.com/EleazarCrusader/nexus-theme", 331 | "https://github.com/electricgraffitti/sublime-theme-Cube2", 332 | "https://github.com/eliquious/Python-Auto-Complete", 333 | "https://github.com/eliquious/Red-Planet-Theme", 334 | "https://github.com/elixir-lang/elixir-tmbundle", 335 | "https://github.com/elomarns/auto-encoding-for-ruby", 336 | "https://github.com/eltimn/sublime-lift", 337 | "https://github.com/email2vimalraj/DashedComments", 338 | "https://github.com/emmetio/sublime-tern", 339 | "https://github.com/enginespot/js-beautify-sublime", 340 | "https://github.com/eonlepapillon/PathToFile", 341 | "https://github.com/epitron/Julia-sublime", 342 | "https://github.com/eproxus/focus_last_tab", 343 | "https://github.com/ericclemmons/sublime-typescript", 344 | "https://github.com/erichard/SublimeCTagsPHP", 345 | "https://github.com/erichard/SublimePHPCompanion", 346 | "https://github.com/ericmartel/Sublime-Text-2-CSV-Plugin", 347 | "https://github.com/ericmartel/Sublime-Text-2-Perforce-Plugin", 348 | "https://github.com/ericmartel/Sublime-Text-2-Search-Anywhere-Plugin", 349 | "https://github.com/ericmartel/Sublime-Text-2-Stackoverflow-Plugin", 350 | "https://github.com/erinata/BuildParts", 351 | "https://github.com/erinata/SublimeBullet", 352 | "https://github.com/erinata/SublimeMarkdownBuild", 353 | "https://github.com/erinata/SublimeRspecBuild", 354 | "https://github.com/erinata/SublimeTradsim", 355 | "https://github.com/Etsur/EE-ST2", 356 | "https://github.com/euler0/sublime-glsl", 357 | "https://github.com/Eun/CustomTasks", 358 | "https://github.com/fabiocorneti/SublimeTextGitX", 359 | "https://github.com/fabiokr/sublime-related-files", 360 | "https://github.com/fabriciotav/ember-snippets-for-sublime-text-2", 361 | "https://github.com/facelessuser/ApplySyntax", 362 | "https://github.com/facelessuser/BracketHighlighter", 363 | "https://github.com/facelessuser/ExportHtml", 364 | "https://github.com/facelessuser/FavoriteFiles", 365 | "https://github.com/facelessuser/FuzzyFileNav", 366 | "https://github.com/facelessuser/HexViewer", 367 | "https://github.com/facelessuser/PlistJsonConverter", 368 | "https://github.com/facelessuser/RegReplace", 369 | "https://github.com/facelessuser/ScopeHunter", 370 | "https://github.com/failcoder/failcoder-theme", 371 | "https://github.com/fanzheng/Sublime.Markdown2Clipboard", 372 | "https://github.com/farzher/Sublime-Text-Themes", 373 | "https://github.com/fbird/Sublime-Pomodoro", 374 | "https://github.com/fblee/sublime-css-selector-reveal", 375 | "https://github.com/fbzhong/sublime-closure-linter", 376 | "https://github.com/fbzhong/sublime-jslint", 377 | "https://github.com/feugenix/BEMHTMLSublime", 378 | "https://github.com/ffesseler/sublimetext-websequencediagrams", 379 | "https://github.com/fitnr/SublimeCSSTidy", 380 | "https://github.com/fitnr/SublimeDataConverter", 381 | "https://github.com/fitzagard/li3_sublime", 382 | "https://github.com/fjl/Sublime-Missing-Palette-Commands", 383 | "https://github.com/flashpunk/Zurb-Foundation-Snippets", 384 | "https://github.com/FlavourSys/Perv-ColorScheme", 385 | "https://github.com/florianeckerstorfer/fe-sublime-phpunit", 386 | "https://github.com/fmaj7/Mason", 387 | "https://github.com/fnkr/SublimeClosureMyJS", 388 | "https://github.com/follesoe/sublime-racket", 389 | "https://github.com/forty-two/NightCycle", 390 | "https://github.com/Foxboron/ClojureDoc-Search", 391 | "https://github.com/Foxboron/SublimeClojure", 392 | "https://github.com/foxxyz/sublime_alphpetize", 393 | "https://github.com/FPtje/Sublime-GLua-Highlight", 394 | "https://github.com/francodacosta/composer-sublime", 395 | "https://github.com/frankban/UbuntuPaste", 396 | "https://github.com/fraoustin/Sublime2pdf", 397 | "https://github.com/fredpointzero/UnityBuild", 398 | "https://github.com/FrenkyNet/CopyNamespace", 399 | "https://github.com/friskfly/Youdao-Translate-For-Sublime", 400 | "https://github.com/frodzet/SublimeWoWDevelopment", 401 | "https://github.com/frou/CFeather", 402 | "https://github.com/frou/GoFeather", 403 | "https://github.com/frou/Sundried", 404 | "https://github.com/frozenice-/RenameTab", 405 | "https://github.com/fukayatsu/SublimeTweetLine", 406 | "https://github.com/FunkMonkey/SublimeResizeActiveGroup", 407 | "https://github.com/fushnisoft/SublimeClarion", 408 | "https://github.com/garyc40/Vintage-Origami", 409 | "https://github.com/geoffroymontel/supercollider-package-for-sublime-text", 410 | "https://github.com/geoffstokes/HypertextTypographer", 411 | "https://github.com/geoffstokes/ShowEncoding", 412 | "https://github.com/GerjanOnline/SublimeFileCleanup", 413 | "https://github.com/GianlucaGuarini/SublimeText2-Parallel-Builder-Plugin", 414 | "https://github.com/gillibrand/expand-selection-to-function-js", 415 | "https://github.com/Gimped/GPD", 416 | "https://github.com/gipsy-king/ControlScroll", 417 | "https://github.com/gja/sublime-rmate", 418 | "https://github.com/gja/sublime-text-2-jasmine", 419 | "https://github.com/gl3n/sublime-php-namespace", 420 | "https://github.com/glyph/E-Max", 421 | "https://github.com/gnarula/sublime-laravelgenerator", 422 | "https://github.com/godbout/sleeplessmind-color-scheme", 423 | "https://github.com/golf3gtiii/Kohana234-sublimeText2-plugin", 424 | "https://github.com/gondo/browsersupport", 425 | "https://github.com/gordio/ToggleBool", 426 | "https://github.com/gornostal/Modific", 427 | "https://github.com/gorte/ST2-Whitespaces", 428 | "https://github.com/graarh/sublime-AutoPHPDollar", 429 | "https://github.com/Grafikart/Open-Browser-SublimeText2-Plugin", 430 | "https://github.com/GravityScore/ST2-ComputerCraft-Package", 431 | "https://github.com/groenewege/mdTodo", 432 | "https://github.com/grundprinzip/RubyPipe", 433 | "https://github.com/grundprinzip/sublemacspro", 434 | "https://github.com/grundprinzip/sublime-dblp", 435 | "https://github.com/gs/sublime-text-go-to-file", 436 | "https://github.com/guillaumebort/play2-sublimetext2", 437 | "https://github.com/guillermooo/Vintageous", 438 | "https://github.com/gumuz/currentscope", 439 | "https://github.com/hachesilva/Comment-Snippets", 440 | "https://github.com/HackerBaloo/SublimeOpenInTotalCommander", 441 | "https://github.com/hairyhum/SublimeStylishHaskell", 442 | "https://github.com/haraken3/SublimeRubyMotionBuilder", 443 | "https://github.com/harrism/sublimetext-cuda-cpp", 444 | "https://github.com/hayaku/hayaku", 445 | "https://github.com/hdemirchian/CSSFormat", 446 | "https://github.com/heelhook/mongomapper-sublime-text2-snippets", 447 | "https://github.com/henrikpersson/rsub", 448 | "https://github.com/hikaruworld/Browse", 449 | "https://github.com/hippasus/SublimeMorse", 450 | "https://github.com/hoest/sublimetext-fsharp", 451 | "https://github.com/hoest/SublimeXSLT", 452 | "https://github.com/huntlyc/Sublime2-Wordpress-Dev-Plugin", 453 | "https://github.com/hussani/Oblivion", 454 | "https://github.com/hyspace/st2-reeder-theme", 455 | "https://github.com/iafan/SublimeTextPreview", 456 | "https://github.com/iamjessu/sublime-SplitScreen-Resizer", 457 | "https://github.com/icylace/CursorRuler", 458 | "https://github.com/Idered/esuna-snippets", 459 | "https://github.com/idleberg/NSIS-Sublime-Text", 460 | "https://github.com/idleberg/NSIS-Sublime-Text-Addons", 461 | "https://github.com/idosela/sublime_new_from_selection", 462 | "https://github.com/ignacysokolowski/SublimeTagWrapper", 463 | "https://github.com/ignacysokolowski/SublimeVintageNumbers", 464 | "https://github.com/iiAtlas/SmartGoogle", 465 | "https://github.com/iltempo/sublime-text-2-hash-syntax", 466 | "https://github.com/ilyakam/ParentalControl", 467 | "https://github.com/imagentleman/ublime", 468 | "https://github.com/individuo7/Hogan-Build", 469 | "https://github.com/ingshtrom/BlockCursorEverywhere", 470 | "https://github.com/integrum/SublimeRubyCoverage", 471 | "https://github.com/Iristyle/Sublime-AngularJS-Coffee-Completions", 472 | "https://github.com/irohiroki/RubyBlockConverter", 473 | "https://github.com/itsgg/Flex-Sublimetext", 474 | "https://github.com/iuliux/SublimeText2-BackThere", 475 | "https://github.com/ivershuo/sublime-aweibo", 476 | "https://github.com/ivershuo/sublime-sublimeweibo", 477 | "https://github.com/j10io/railsdev-sublime-snippets", 478 | "https://github.com/jackfranklin/ST2-MDN-Search", 479 | "https://github.com/jamiesun/SublimeEvernote", 480 | "https://github.com/jamiesun/SublimeTalkincode", 481 | "https://github.com/jampow/velocity-sublime", 482 | "https://github.com/jarhart/SublimeSBT", 483 | "https://github.com/JasonMortonNZ/bs3-sublime-plugin", 484 | "https://github.com/jaumefontal/SASS-Build-SublimeText2", 485 | "https://github.com/jawb/Matrixify", 486 | "https://github.com/jbrooksuk/InsertNums", 487 | "https://github.com/jbrooksuk/StripHTML", 488 | "https://github.com/jbrooksuk/Sublime-Evaluate", 489 | "https://github.com/jbrooksuk/SublimeWebColors", 490 | "https://github.com/jcartledge/sublime-surround", 491 | "https://github.com/jcartledge/vintage-sublime-surround", 492 | "https://github.com/jclement/SublimePandoc", 493 | "https://github.com/jcowgar/sublime-duplicate-same", 494 | "https://github.com/jcowgar/sublime-task-timer", 495 | "https://github.com/jdc0589/CaseConversion", 496 | "https://github.com/jdc0589/JsFormat", 497 | "https://github.com/jden/AMDtools", 498 | "https://github.com/jden/JsBDD", 499 | "https://github.com/jdiehl/dark-pastel", 500 | "https://github.com/jedy/SublimeReader", 501 | "https://github.com/jeromeetienne/tquery-sublime", 502 | "https://github.com/jf8073/sublime-snake", 503 | "https://github.com/jfairbank/Sublime-Text-2-OpenEdge-ABL", 504 | "https://github.com/jfromaniello/Grandson-of-Obsidian", 505 | "https://github.com/jfromaniello/sublime-html-to-jade", 506 | "https://github.com/jfromaniello/sublime-mocha-snippets", 507 | "https://github.com/jfromaniello/sublime-node-require", 508 | "https://github.com/Jimbly/SublimeClipboardHistory", 509 | "https://github.com/jimhawkridge/SublimeABC", 510 | "https://github.com/jims/sublime-sjson", 511 | "https://github.com/jinze/sublime-rvm", 512 | "https://github.com/jisaacks/CoffeeScriptHaml", 513 | "https://github.com/jisaacks/GitGutter", 514 | "https://github.com/jisaacks/MaxPane", 515 | "https://github.com/jlegewie/SublimePeek", 516 | "https://github.com/jlegewie/SublimePeek-R-help", 517 | "https://github.com/jleonard/Async-Snippets", 518 | "https://github.com/jleonard/sublime-text-2-front-end", 519 | "https://github.com/jlong64/sublime_valign", 520 | "https://github.com/jmm/Sublime-Text-Block-Nav/tree/package-control", 521 | "https://github.com/jmm/Sublime-Text-Cycle-Setting/tree/package-control", 522 | "https://github.com/jnordberg/sublime-colorpick", 523 | "https://github.com/jobywalker/PgSQL-Sublime", 524 | "https://github.com/jocelynmallon/sublime-text-2-marked", 525 | "https://github.com/jocelynmallon/sublime-text-2-sourcetree", 526 | "https://github.com/joelpt/sublimetext-automatic-backups", 527 | "https://github.com/joelpt/sublimetext-print-to-html", 528 | "https://github.com/JohnNilsson/awk-sublime", 529 | "https://github.com/jonasdp/Snipplr", 530 | "https://github.com/jonbons/Sublime-SQF-Language", 531 | "https://github.com/joneshf/sublime-roy", 532 | "https://github.com/jonlabelle/Trimmer", 533 | "https://github.com/jonny64/ludik", 534 | "https://github.com/jonschlinkert/pre-sublime", 535 | "https://github.com/jonschlinkert/sublime-markdown-extended", 536 | "https://github.com/jonschlinkert/sublime-monokai-extended", 537 | "https://github.com/josegonzalez/sublimetext-cakephp", 538 | "https://github.com/joseitinerarium/ST2-TiSearch", 539 | "https://github.com/JoshCheek/sublime-text-2-seeing-is-believing", 540 | "https://github.com/joshnh/CSS-Snippets", 541 | "https://github.com/joshnh/HTML-Snippets", 542 | "https://github.com/jotson/SublimeMagentoIntel", 543 | "https://github.com/jpatzer/Tritium.tmbundle", 544 | "https://github.com/jprichardson/sublime-js-snippets", 545 | "https://github.com/jsliang/sublime-pelican", 546 | "https://github.com/jtallant/Genesis", 547 | "https://github.com/jtdeng/GoToDoc", 548 | "https://github.com/jturcotte/SublimeChubyNinja", 549 | "https://github.com/jturcotte/SublimeClipboardPath", 550 | "https://github.com/jturcotte/SublimeCloseOldestFile", 551 | "https://github.com/jturcotte/SublimeSwitchFileDeluxe", 552 | "https://github.com/jugyo/SublimeColorSchemeSelector", 553 | "https://github.com/jugyo/SublimeGitGrep", 554 | "https://github.com/jugyo/SublimeHttpStatusCode", 555 | "https://github.com/jugyo/SublimeRecentActiveFiles", 556 | "https://github.com/jugyo/SublimeRSpecNavigator", 557 | "https://github.com/jugyo/SublimeRubyEval", 558 | "https://github.com/jugyo/SublimeRubyToggleString", 559 | "https://github.com/jugyo/SublimeSimpleTODO", 560 | "https://github.com/jugyo/SublimeSnippetMaker", 561 | "https://github.com/jugyo/SublimeTraverse", 562 | "https://github.com/juhasz/drupal_sublime-snippets", 563 | "https://github.com/juliandescottes/sublime-ariatemplates-highlighter", 564 | "https://github.com/JulianEberius/SublimePythonIDE", 565 | "https://github.com/JulianEberius/SublimeRope", 566 | "https://github.com/julianxhokaxhiu/sublime-projecttreetemplater", 567 | "https://github.com/justindmartin1/superman-color-scheme", 568 | "https://github.com/justinfx/MayaSublime", 569 | "https://github.com/justinmahar/SublimeCSAutocompletePlus", 570 | "https://github.com/justnorris/Sublime-Susy", 571 | "https://github.com/k0sukey/ST2-TitaniumDoc", 572 | "https://github.com/kahi/sublime-django-click", 573 | "https://github.com/karthikram/Rtools", 574 | "https://github.com/kassi/sublime-text-2-guard-helpers", 575 | "https://github.com/kassi/sublime-text-2-xmpfilter", 576 | "https://github.com/kazshu/rspec-snippets", 577 | "https://github.com/kek/sublime-expand-selection-to-quotes", 578 | "https://github.com/KELiON/RailsMigrationsList", 579 | "https://github.com/kemayo/sublime-text-2-clipboard-history", 580 | "https://github.com/kemayo/sublime-text-2-git", 581 | "https://github.com/kemayo/sublime-text-2-goto-documentation", 582 | "https://github.com/Kentzo/SortLinesByColumn", 583 | "https://github.com/Kentzo/SublimeMagick", 584 | "https://github.com/keqh/sublime-tmux-syntax-highlight", 585 | "https://github.com/khiltd/Abacus", 586 | "https://github.com/khiltd/Saccades", 587 | "https://github.com/khrizt/GotoLastEdit", 588 | "https://github.com/Kindari/SublimeXdebug", 589 | "https://github.com/kizza/CSS-Less-ish", 590 | "https://github.com/klaascuvelier/ST2-CommandOnSave", 591 | "https://github.com/klangfarbe/sublime-maperitive", 592 | "https://github.com/klaussilveira/SublimeNESASM", 593 | "https://github.com/kliu/SublimeLogHelper", 594 | "https://github.com/kloon/WooCommerce-Sublime-Text-2-Auto-Completion", 595 | "https://github.com/knagy/sublimetext2-todotxt", 596 | "https://github.com/koken/koken-sublime", 597 | "https://github.com/koko1000ban/SublimeGtags", 598 | "https://github.com/kollhof/sublime-cypher", 599 | "https://github.com/Korcholis/Andrew", 600 | "https://github.com/kostajh/subDrush", 601 | "https://github.com/kostajh/sublime-taskwarrior", 602 | "https://github.com/kpym/SublimeLaTeXAccents", 603 | "https://github.com/Kristories/Sublime-Mongo-PHP", 604 | "https://github.com/kriswema/Sublime-BHT-BASIC", 605 | "https://github.com/krockode/sublime-cucumber-completion", 606 | "https://github.com/krussell/VintageEscape", 607 | "https://github.com/kudanai/sublime-chordpro", 608 | "https://github.com/kugland/Sublime-BetaCode", 609 | "https://github.com/kutu/PythonAnywhereEditor", 610 | "https://github.com/kutu/RandomMessage", 611 | "https://github.com/kvs/ST2Nginx", 612 | "https://github.com/kvs/ST2Slate", 613 | "https://github.com/kvs/STEmacsModelines", 614 | "https://github.com/kwattro/sublime-behat-snippets", 615 | "https://github.com/Ky6uk/SublimeDancer", 616 | "https://github.com/kyamaguchi/sublime-text-2-revert-hash-syntax", 617 | "https://github.com/kyamaguchi/SublimeObjC2RubyMotion", 618 | "https://github.com/laravel/sublime-snippets", 619 | "https://github.com/larlequin/PandocAcademic", 620 | "https://github.com/laughedelic/LoadFileToRepl", 621 | "https://github.com/lazyguru/GoToClass", 622 | "https://github.com/lcdsantos/CSSFontFamily", 623 | "https://github.com/leon/YUI-Compressor", 624 | "https://github.com/leonardoce/nimrod-sublime", 625 | "https://github.com/leonardowolter/tubaina-afc", 626 | "https://github.com/leonid-shevtsov/ClickableUrls_SublimeText2", 627 | "https://github.com/leonid-shevtsov/SearchInProject_SublimeText2", 628 | "https://github.com/LewisW/SublimeAutoSemiColon", 629 | "https://github.com/lfont/Sublime-Text-2-GoogleTranslate-Plugin", 630 | "https://github.com/liamr/Zurb-Foundation-Textmate-Bundle", 631 | "https://github.com/lingo/sublime-fscompletion", 632 | "https://github.com/lionandoil/SublimeLaTeXWordCount", 633 | "https://github.com/lioshi/lioshiScheme", 634 | "https://github.com/lkraider/sublimetext2-apiary-blueprint", 635 | "https://github.com/lmajano/cbox-coldbox-sublime", 636 | "https://github.com/lmno/TOML", 637 | "https://github.com/lolow/sublime-gams", 638 | "https://github.com/lowerworld/SublimeFileClose", 639 | "https://github.com/lowerworld/SublimeToggleSettings", 640 | "https://github.com/lowliet/sublimetext-StatusBarTime", 641 | "https://github.com/lukewilkins/EE-Add-On-Builder", 642 | "https://github.com/Lunatrius/xmllint", 643 | "https://github.com/lunixbochs/sublimelint", 644 | "https://github.com/lunixbochs/SublimeXiki", 645 | "https://github.com/luqman/SublimeText2RailsRelatedFiles", 646 | "https://github.com/lvkun/eval_sel", 647 | "https://github.com/m0nah/Laravel-4-Artisan", 648 | "https://github.com/mac2000/sublime-smart-delete", 649 | "https://github.com/MaciekBaron/sublime-list-less-vars", 650 | "https://github.com/MaciekBaron/sublime-list-stylesheet-vars", 651 | "https://github.com/madeingnecca/sublime-fillerati", 652 | "https://github.com/madeingnecca/sublime-find-non-ascii", 653 | "https://github.com/madeingnecca/sublime-slug", 654 | "https://github.com/MakiseKurisu/MasmAssembly", 655 | "https://github.com/malexer/SublimeTranslit", 656 | "https://github.com/malroc/sourcetalk_st2", 657 | "https://github.com/maltize/sublime-text-2-moo", 658 | "https://github.com/maltize/sublime-text-2-ruby-tests", 659 | "https://github.com/mandx/SublimeAutoSoftWrap", 660 | "https://github.com/mangini/chrome-apis-sublime/tree/published", 661 | "https://github.com/Manrich121/goFindCallers", 662 | "https://github.com/marcelod/ipsums", 663 | "https://github.com/marclar/RandomizeLogMessages", 664 | "https://github.com/marconi/mako-tmbundle", 665 | "https://github.com/marijnh/tern_for_sublime", 666 | "https://github.com/MarioRicalde/SCSS.tmbundle/tree/SublimeText2", 667 | "https://github.com/markandey/codefoo", 668 | "https://github.com/martinsam/sublime-friendpaste", 669 | "https://github.com/martinsam/sublime-unittest", 670 | "https://github.com/martinssipenko/SublimeHostsEdit", 671 | "https://github.com/martomo/SublimeTextXdebug", 672 | "https://github.com/maslbl4/sublime-xaml", 673 | "https://github.com/mastahyeti/URLEncode", 674 | "https://github.com/MathiasPaumgarten/SmartDuplicate-Sublime", 675 | "https://github.com/matiaspub/BitrixHelp", 676 | "https://github.com/matiaspub/WebExPertColorScheme", 677 | "https://github.com/matiaspub/WheelChanger", 678 | "https://github.com/mattbanks/dotfiles-syntax-highlighting-st2", 679 | "https://github.com/matthewrobb/Six.tmLanguage", 680 | "https://github.com/matthewrobertson/ERB-Sublime-Snippets", 681 | "https://github.com/matthiasg/sublime-mocha-runner", 682 | "https://github.com/mattstevens/sublime-titlecase", 683 | "https://github.com/MattTuttle/sublime-ti-build", 684 | "https://github.com/max-mykhailenko/memTask", 685 | "https://github.com/maxhoffmann/angular-snippets", 686 | "https://github.com/mazurov/sublime-levels", 687 | "https://github.com/mborgerson/Pad", 688 | "https://github.com/mburrows/RecenterTopBottom", 689 | "https://github.com/mctep/yate-textmate", 690 | "https://github.com/mediaupstream/SublimeText-Crypto", 691 | "https://github.com/mediaupstream/SublimeText-NodeEval", 692 | "https://github.com/Mendor/sublime-blusted/tree/publish", 693 | "https://github.com/ment4list/SublimeZilla", 694 | "https://github.com/mhau/GeneratePassword", 695 | "https://github.com/Michal-Mikolas/Nette-package-for-Sublime-Text-2", 696 | "https://github.com/michelmcbride/UnitySublimeTextSnippets", 697 | "https://github.com/michfield/sublime-strapdown-preview", 698 | "https://github.com/mikefowler/simple-clone", 699 | "https://github.com/mikepfirrmann/openfolder", 700 | "https://github.com/Mimino666/SublimeText2-python-open-module-new", 701 | "https://github.com/Mimino666/SublimeText2-python-package-to-clipboard", 702 | "https://github.com/mimopo/ZenGarden", 703 | "https://github.com/mimshwright/sublime-eggplant-parm", 704 | "https://github.com/minimedj/ErlDoc", 705 | "https://github.com/minism/SublimeBufmod", 706 | "https://github.com/minism/SublimeLove", 707 | "https://github.com/misalazovic/PHP-MySQLi-connection", 708 | "https://github.com/misaxi/sublime-code-preview", 709 | "https://github.com/misfo/Shell-Turtlestein", 710 | "https://github.com/mishu91/Sublime-Text-2-Table-Cleaner", 711 | "https://github.com/mishu91/sublime-text-theme-night", 712 | "https://github.com/mistydemeo/DBTextWorks", 713 | "https://github.com/mitsuhiko/jinja2-tmbundle", 714 | "https://github.com/mjio/boron.tmtheme", 715 | "https://github.com/mjs7231/sublime-pkstheme", 716 | "https://github.com/mkraft/git-status-files", 717 | "https://github.com/mlf4aiur/sublimetext-markup-jira-confluence", 718 | "https://github.com/MLstate/OpaSublimeText", 719 | "https://github.com/mmims/sublime-text-2-ruby-markers", 720 | "https://github.com/mmoriar1/AMPScript", 721 | "https://github.com/mneuhaus/SublimeFileTemplates", 722 | "https://github.com/moeffju/sublime-ledger-syntax", 723 | "https://github.com/Monnoroch/ColorHighlighter", 724 | "https://github.com/monospaced/sublime-twee", 725 | "https://github.com/morganestes/sublime-recess", 726 | "https://github.com/mpmont/ci-snippets", 727 | "https://github.com/mradam/moscowml", 728 | "https://github.com/mrcharles/sublove2d", 729 | "https://github.com/mreq/mreq-theme", 730 | "https://github.com/mrmartineau/HTML5", 731 | "https://github.com/mrmartineau/Placeholders", 732 | "https://github.com/mrmartineau/SASS-Snippets", 733 | "https://github.com/mschoebel/cocosyntax", 734 | "https://github.com/musashimm/Sublime-Text-2-Mina", 735 | "https://github.com/mvoidex/UnicodeMath", 736 | "https://github.com/mxunit/sublime-text-2-mxunit", 737 | "https://github.com/n1k0/SublimeHighlight", 738 | "https://github.com/n1k0/SublimeText-CasperJS", 739 | "https://github.com/Nalum/Touch-WSGI", 740 | "https://github.com/NaN1488/sublime-gem-browser/tree/stable", 741 | "https://github.com/naokazuterada/MarkdownTOC", 742 | "https://github.com/Narven/sublime-artisan", 743 | "https://github.com/natew/ExpandSelectionByParagraph", 744 | "https://github.com/nathanleiby/ChucK.tmbundle", 745 | "https://github.com/nathos/sass-textmate-bundle/tree/sublime", 746 | "https://github.com/Ndushi/RandomHEXColor", 747 | "https://github.com/nerdo/fido", 748 | "https://github.com/netatoo/phoenix-theme", 749 | "https://github.com/nh2/sublime-text-move-tabs", 750 | "https://github.com/nibblebot/sublime-js2coffee", 751 | "https://github.com/nicetrysean/SublimeToHastebin", 752 | "https://github.com/Nijikokun/Prevu", 753 | "https://github.com/Nijikokun/todo-tmbundle", 754 | "https://github.com/nilium/st2-nil-theme", 755 | "https://github.com/Nivl/sublime-hamlpy", 756 | "https://github.com/nlloyd/SublimeMaven", 757 | "https://github.com/nlloyd/SubliminalCollaborator", 758 | "https://github.com/noahcoad/open-url", 759 | "https://github.com/noct/SublimeSL", 760 | "https://github.com/noklesta/SublimeEmberNav", 761 | "https://github.com/noklesta/SublimeQuickFileCreator", 762 | "https://github.com/noklesta/SublimeRailsNav", 763 | "https://github.com/nomnel/Sublime-Gauche-Syntax", 764 | "https://github.com/NorthIsUp/Sublimation", 765 | "https://github.com/NoxArt/SublimeText2-FTPSync", 766 | "https://github.com/NoxArt/SublimeText2-LinkOpener", 767 | "https://github.com/npostulart/doctrine-sublime-snippets", 768 | "https://github.com/npostulart/SCSS-Snippets", 769 | "https://github.com/Nucc/Thesaurus", 770 | "https://github.com/nucleartux/sublime-symfony", 771 | "https://github.com/oct8cat/sublime-phpdox", 772 | "https://github.com/odyssomay/paredit", 773 | "https://github.com/odyssomay/sublime-lispindent", 774 | "https://github.com/ogom/sublimetext-markdown-slideshow", 775 | "https://github.com/oleander/sublime-split-navigation", 776 | "https://github.com/omissis/sublime-behat-syntax", 777 | "https://github.com/onrel/sublime-paste-as-link", 778 | "https://github.com/osoco/sublimetext-grails", 779 | "https://github.com/ostinelli/SublimErl/tree/package", 780 | "https://github.com/outer-edge/SublimeLoremPixel", 781 | "https://github.com/P233/Emmet-Css-Snippets-for-Sublime-Text-2", 782 | "https://github.com/P233/Jade-Snippets-for-Sublime-Text-2", 783 | "https://github.com/P233/Syntax-highlighting-for-Sass", 784 | "https://github.com/Paaskehare/pastebin-sublime-plugin", 785 | "https://github.com/paccator/GotoRecent", 786 | "https://github.com/Pafsis/hookblime", 787 | "https://github.com/palaniraja/iForce", 788 | "https://github.com/PaNaVTEC/Objc-Strings-Syntax-Language", 789 | "https://github.com/papaDoc/FastSwitch", 790 | "https://github.com/pashamur/ruby-extract-method", 791 | "https://github.com/patgannon/sublimetext-scalatest", 792 | "https://github.com/patricktalmadge/Bootstrapper_snippets", 793 | "https://github.com/paulmillr/LiveScript.tmbundle", 794 | "https://github.com/paulollivier/sublimetext-date", 795 | "https://github.com/pavelpachkovskij/sublime-html-to-haml", 796 | "https://github.com/pdaether/Sublime-SymfonyCommander", 797 | "https://github.com/pderichs/sublime_rubocop", 798 | "https://github.com/pensive612/sublime-chai-full-completions", 799 | "https://github.com/Pephers/Super-Calculator", 800 | "https://github.com/petereichinger/Unity3D-Shader", 801 | "https://github.com/pheuter/BitcoinTicker", 802 | "https://github.com/phildopus/EclipseJavaFormatter", 803 | "https://github.com/phildopus/sublime-goto-open-file", 804 | "https://github.com/philipguin/dfml-sublime-package", 805 | "https://github.com/PhilippSchaffrath/Anypreter", 806 | "https://github.com/phuibonhoa/handcrafted-haml-textmate-bundle", 807 | "https://github.com/Phunky/madebyphunky", 808 | "https://github.com/phyllisstein/HipsterIpsum", 809 | "https://github.com/phyllisstein/Markboard", 810 | "https://github.com/phyllisstein/Pandown", 811 | "https://github.com/phyllisstein/Wick", 812 | "https://github.com/phyllisstein/Wind", 813 | "https://github.com/pipe-devnull/ZF2Helper", 814 | "https://github.com/pjkottke/FLAC-Syntax", 815 | "https://github.com/Placester/placester-st2-plugin", 816 | "https://github.com/Pleasurazy/Sublime-JavaScript-API-Completions", 817 | "https://github.com/Pleasurazy/Sublime-Twitter-Bootstrap-ClassNames", 818 | "https://github.com/PogiNate/SublimeWiki", 819 | "https://github.com/PogiNate/XQuery-Sublime", 820 | "https://github.com/poritsky/fountain-sublime-text", 821 | "https://github.com/possan/sublime_unicode_nbsp", 822 | "https://github.com/pravka/SublimeSynchroScroll", 823 | "https://github.com/pro711/sublime-verilog", 824 | "https://github.com/ProjectCleverWeb/MultiLang", 825 | "https://github.com/prongs/SublimeCodechef", 826 | "https://github.com/prongs/SublimeNumberManipulation", 827 | "https://github.com/ProtractorNinja/SPARC-sublime", 828 | "https://github.com/psicomante/CLIPS-sublime", 829 | "https://github.com/psyrendust/CSScomb-Alpha-Sort-for-Sublime", 830 | "https://github.com/Pugsworth/SearchGmodWiki", 831 | "https://github.com/PureCM/Sublime-Text-2-PureCM-Plugin", 832 | "https://github.com/purplefish32/sublime-text-2-twig", 833 | "https://github.com/purplefish32/sublime-text-2-wordpress", 834 | "https://github.com/pwhisenhunt/Sublime-Text-2-Lazy-Backbone.js-Package", 835 | "https://github.com/pyzhangxiang/sublimetext-2-readonly-writable", 836 | "https://github.com/qfel/RunCommand", 837 | "https://github.com/qfel/sublime-pytags", 838 | "https://github.com/quarnster/ADBView", 839 | "https://github.com/quarnster/PlatformSettings", 840 | "https://github.com/quarnster/SublimeGDB", 841 | "https://github.com/qur2/HighlightDuplicates", 842 | "https://github.com/R3AL/SublimeTransporter", 843 | "https://github.com/radiosilence/dogs-colour-scheme", 844 | "https://github.com/RadLikeWhoa/JS-Snippets", 845 | "https://github.com/raik/st2-pseudo-osx-theme", 846 | "https://github.com/randy3k/AlignTab", 847 | "https://github.com/randy3k/AutoWrap", 848 | "https://github.com/randy3k/ChangeList", 849 | "https://github.com/randy3k/Enhanced-R", 850 | "https://github.com/rareyman/HTMLBeautify", 851 | "https://github.com/raulfraile/sublime-symfony2", 852 | "https://github.com/raydric/raydric-color-scheme", 853 | "https://github.com/RazerM/APDL-Syntax", 854 | "https://github.com/rcaldwel/Django-Tools", 855 | "https://github.com/rcaldwel/DNS", 856 | "https://github.com/rcastagno/sublime_varscoper", 857 | "https://github.com/rchl/UnindentPreprocessor", 858 | "https://github.com/rcknight/SublimeEventStore", 859 | "https://github.com/rctay/sublime-text-2-buildview", 860 | "https://github.com/redata425/derby", 861 | "https://github.com/reflog/toggle-readonly", 862 | "https://github.com/reinteractive-open/Syntax-Matcher", 863 | "https://github.com/relikd/CUE-Sheet_sublime", 864 | "https://github.com/remcoder/SublimeHandcraft", 865 | "https://github.com/revathskumar/sublime-yardoc", 866 | "https://github.com/revolunet/sublimetext-html-export", 867 | "https://github.com/revolunet/sublimetext-markdown-preview", 868 | "https://github.com/revolunet/sublimetext-web-encoders", 869 | "https://github.com/rioderaca/LaTeX-Track-Changes", 870 | "https://github.com/rjcoelho/sublime-clearcase", 871 | "https://github.com/rkJun/sublime-tipJS-snippets", 872 | "https://github.com/rmaksim/Sublime-Text-2-Goto-CSS-Declaration", 873 | "https://github.com/rmaksim/Sublime-Text-2-Inc-Dec-Value", 874 | "https://github.com/roadhump/GoldenRatio", 875 | "https://github.com/roadhump/ReadmePlease", 876 | "https://github.com/robballou/drupal-sublimetext", 877 | "https://github.com/robballou/gitconfig-sublimetext", 878 | "https://github.com/robballou/sublimetext-sshconfig", 879 | "https://github.com/robbl/sublime-switch", 880 | "https://github.com/robcowie/SublimePaster", 881 | "https://github.com/robinmalburn/sublime-tabfilter", 882 | "https://github.com/Robot-Will/Stino", 883 | "https://github.com/rockerest/Signatori", 884 | "https://github.com/rodrigoflores/hosts", 885 | "https://github.com/rodrigoflores/today", 886 | "https://github.com/roesti77/Sublime-Open-Shading-Language", 887 | "https://github.com/rorydriscoll/LuaSublime", 888 | "https://github.com/roverwire/codeigniter-utilities", 889 | "https://github.com/royvandewater/Sublime2-TreeTop", 890 | "https://github.com/rozboris/Sublime-Tweet", 891 | "https://github.com/rozsahegyi/sublime-webloader", 892 | "https://github.com/rposbo/sublimemarkpress", 893 | "https://github.com/rrerolle/sublime-scheme-cycler", 894 | "https://github.com/rspec/rspec-tmbundle", 895 | "https://github.com/russCloak/SublimePuppet", 896 | "https://github.com/s-a/sublime-text-refactor", 897 | "https://github.com/sahibalejandro/inline-calculator", 898 | "https://github.com/sahibalejandro/quark-php-sublime", 899 | "https://github.com/saippuakauppias/sublime-text-2-Django-DocsSearch", 900 | "https://github.com/samholmes/EJS.tmLanguage", 901 | "https://github.com/samizdatco/sublime-text-shebang", 902 | "https://github.com/SamPeng87/sublime-last-edit", 903 | "https://github.com/samsonw/SublimeTask", 904 | "https://github.com/samueljohn/Homebrew-formula-syntax", 905 | "https://github.com/saulhudson/saulhudson-color-schemes", 906 | "https://github.com/sc8696/sublime-css-auto-comments", 907 | "https://github.com/schnittchen/sublime-helios", 908 | "https://github.com/scriptcs/scriptcs-sublime", 909 | "https://github.com/scttcper/Scriptogram", 910 | "https://github.com/sdurette/SublimeWebFocus", 911 | "https://github.com/seancoyne/farcry-sublimetext", 912 | "https://github.com/seanja/ampscript-st2", 913 | "https://github.com/seanjames777/SML-Language-Definition", 914 | "https://github.com/seanliang/HighlightWords", 915 | "https://github.com/sellerengine/sublime_context_build", 916 | "https://github.com/sepisoad/ValaForSublime", 917 | "https://github.com/seregatte/DrupalContribSearch", 918 | "https://github.com/sergeche/emmet-sublime", 919 | "https://github.com/serialhex/Language---Up-Goer-5", 920 | "https://github.com/setumiami/sublime-typescript-compiler", 921 | "https://github.com/Shagabutdinov/sublime-anyword-completion", 922 | "https://github.com/Shagabutdinov/sublime-open-path", 923 | "https://github.com/Shammah/boo-sublime", 924 | "https://github.com/shammond42/cheater", 925 | "https://github.com/ShaneWilton/sublime-smali", 926 | "https://github.com/sheerun/sublime-wombat-theme", 927 | "https://github.com/sheldon/sublime-text-2-folder-list", 928 | "https://github.com/shell/sublime-tomdoc", 929 | "https://github.com/shellderp/sublime-robot-plugin", 930 | "https://github.com/shibainurou/SublimeAizuOnlineJudge", 931 | "https://github.com/Shirk/Sublime-FASM-x86", 932 | "https://github.com/shvva/Lookupdic", 933 | "https://github.com/Siddley/Creole", 934 | "https://github.com/Siddley/Enhanced.HTML.CFML", 935 | "https://github.com/sijk/sublime-licence-snippets", 936 | "https://github.com/silentworks/modx-sublimetext-2", 937 | "https://github.com/silk-web-toolkit/SILK-snippets", 938 | "https://github.com/SimonKern/Auto-Encoding-for-Python", 939 | "https://github.com/simonrad/sublime-selection-tools", 940 | "https://github.com/sindresorhus/editorconfig-sublime", 941 | "https://github.com/sindresorhus/focus", 942 | "https://github.com/sindresorhus/sublime-autoprefixer", 943 | "https://github.com/SirReal/eZ-Publish-Syntax", 944 | "https://github.com/sivakumar-kailasam/jprop-cleaner", 945 | "https://github.com/sivakumar-kailasam/Repeat-Macro", 946 | "https://github.com/six519/MonoRun", 947 | "https://github.com/skarcha/SublimeText2-4GL", 948 | "https://github.com/skoch/Sublime-ActionScript-3", 949 | "https://github.com/skuroda/FindKeyConflicts", 950 | "https://github.com/skuroda/PackageResourceViewer", 951 | "https://github.com/skuroda/PersistentRegexHighlight", 952 | "https://github.com/skuroda/Sublime-AdvancedNewFile", 953 | "https://github.com/skyronic/DogEars", 954 | "https://github.com/slim-template/ruby-slim.tmbundle", 955 | "https://github.com/sloria/sublime-nose-snippets", 956 | "https://github.com/sloria/sublime-selenium-snippets", 957 | "https://github.com/Smerty/sublime-named", 958 | "https://github.com/sntran/sublime-dustjs", 959 | "https://github.com/sobstel/SyncedSideBar", 960 | "https://github.com/spacenick/SublimeText2-BackboneBaguette-package", 961 | "https://github.com/spadgos/sublime-AsAbove", 962 | "https://github.com/spadgos/sublime-csspecific", 963 | "https://github.com/spadgos/sublime-DefaultFileType", 964 | "https://github.com/spadgos/sublime-jsdocs", 965 | "https://github.com/spadgos/sublime-OpenRecentFiles", 966 | "https://github.com/spadgos/sublime-require-helper", 967 | "https://github.com/spadgos/sublime-SplitScreen", 968 | "https://github.com/spadgos/sublime-ToggleQuotes", 969 | "https://github.com/speg/SublimeGReader", 970 | "https://github.com/speilberg0/ci-codeintel-helper", 971 | "https://github.com/speilberg0/SublimeToggleCssFormat", 972 | "https://github.com/splatzgud/VGR-Assistant", 973 | "https://github.com/sporto/rails_go_to_spec", 974 | "https://github.com/sproutcore/sproutcore-sublime-text-2-package", 975 | "https://github.com/squ1b3r/Djaneiro", 976 | "https://github.com/srilumpa/SyntaxChecker", 977 | "https://github.com/ssrihari/sublime-logger-snippets", 978 | "https://github.com/standfast/Translate", 979 | "https://github.com/stephendavis89/sublime-liquid", 980 | "https://github.com/stevenjs/M68k-Assembly", 981 | "https://github.com/stowns/Agile", 982 | "https://github.com/stuartherbert/sublime-phix-color-scheme", 983 | "https://github.com/stuartherbert/sublime-phpsnippets", 984 | "https://github.com/stuartherbert/sublime-phpunit", 985 | "https://github.com/Stubbs/sublime-minkextension", 986 | "https://github.com/Stubbs/sublime-puppet-syntax", 987 | "https://github.com/Stubbs/sublime-vagrant", 988 | "https://github.com/Stuk/sublime-edit-history", 989 | "https://github.com/stylishmedia/SublimeText-Tabright", 990 | "https://github.com/SublimeColors/Solarized", 991 | "https://github.com/SublimeHaskell/SublimeHaskell", 992 | "https://github.com/sublimescala/sublime-ensime", 993 | "https://github.com/SubZane/Sublime-Dummy-Image-Generator", 994 | "https://github.com/SubZane/Sublime-Placehold.it", 995 | "https://github.com/SubZane/Sublime-Snipt-Snippet-Fetcher", 996 | "https://github.com/Suor/CommentsAwareEnter", 997 | "https://github.com/superguigui/xtoy", 998 | "https://github.com/surjikal/sublime-coffee-compile", 999 | "https://github.com/surjikal/sublime-howdoi", 1000 | "https://github.com/svenax/SublimePrint", 1001 | "https://github.com/swdunlop/antiki", 1002 | "https://github.com/swenson/sublime_whitespace", 1003 | "https://github.com/sys1yagi/SublimeBingTranslator", 1004 | "https://github.com/tadast/sublime-rails-snippets", 1005 | "https://github.com/Taecho/Sublime-Snipt", 1006 | "https://github.com/tanc/st2-drupal-autocomplete", 1007 | "https://github.com/tanepiper/sublime-todomanager", 1008 | "https://github.com/tanepiper/SublimeText-Nodejs", 1009 | "https://github.com/tatemz/WordPress-Generate-Salts", 1010 | "https://github.com/tdebarochez/sublime-mailto", 1011 | "https://github.com/tdm00/sublime-theme-railscasts", 1012 | "https://github.com/technocoreai/SublimeExternalCommand", 1013 | "https://github.com/tednaleid/sublime-EasyMotion", 1014 | "https://github.com/temochka/sublime-text-2-beanstalk", 1015 | "https://github.com/temochka/sublime-text-2-github-tools", 1016 | "https://github.com/testdouble/sublime-test-double", 1017 | "https://github.com/TheDutchCoder/ColorConvert", 1018 | "https://github.com/TheOnlyRew/sublime-horizontal-scroll", 1019 | "https://github.com/theymaybecoders/sublime-tomorrow-theme", 1020 | "https://github.com/thgie/Summerfruit", 1021 | "https://github.com/thierrylemoulec/Sublime-Csslisible", 1022 | "https://github.com/thinkpixellab/flatland", 1023 | "https://github.com/ThisIsJohnBrown/Sublime-Hhhhold", 1024 | "https://github.com/Tian-Changsong/Verilog-Automatic", 1025 | "https://github.com/TikiTDO/AutoSlim", 1026 | "https://github.com/tikot/sublime-code2docs", 1027 | "https://github.com/timdavies/HackerNews-SublimeTextPlugin", 1028 | "https://github.com/timdouglas/sublime-find-function-definition", 1029 | "https://github.com/timdouglas/sublime-less2css", 1030 | "https://github.com/timjrobinson/SublimeNavigationHistory", 1031 | "https://github.com/tinacious/CSS-Reset-Sublime-Snippet", 1032 | "https://github.com/tinacious/fakeimg.sublime-snippet", 1033 | "https://github.com/TitanKing/Express.tmTheme", 1034 | "https://github.com/titoBouzout/SideBarEnhancements", 1035 | "https://github.com/tkowalewski/phpunit-sublime-completions", 1036 | "https://github.com/tm-minty/sublime-text-2-image2base64", 1037 | "https://github.com/tnhu/SimpleSync", 1038 | "https://github.com/TobiasRaeder/SublimeClosure", 1039 | "https://github.com/todorowww/st2-snippet-ci2-mc", 1040 | "https://github.com/toin0u/Sublime-atoum", 1041 | "https://github.com/tomalec/Sublime-Text-2-Vlt-Plugin", 1042 | "https://github.com/tomasztunik/Sublime-Text-2-Backbone.js-package", 1043 | "https://github.com/tomav/SublimeText2-Behat-Features-Syntax", 1044 | "https://github.com/TooooBug/CompactExpandCss", 1045 | "https://github.com/topikachu/sublime-text-2-GrepCodeSearch", 1046 | "https://github.com/toru-hamaguchi/sublime-fish-shell", 1047 | "https://github.com/tosher/Mediawiker", 1048 | "https://github.com/travmik/ZenTabs", 1049 | "https://github.com/trentrichardson/Clientside", 1050 | "https://github.com/trishume/Sublime-Rosetta-Get", 1051 | "https://github.com/trustmaster/sublime-cotonti", 1052 | "https://github.com/tstirrat/Idoc-sublime", 1053 | "https://github.com/TurtlePie/Sublime-ECT", 1054 | "https://github.com/tvirgl/Sublime-ARM-Assembly", 1055 | "https://github.com/tvirgl/sublime-dafny", 1056 | "https://github.com/tvooo/sublime-grunt", 1057 | "https://github.com/Twiebie/ST-FutureFunk", 1058 | "https://github.com/twolfson/FindPlusPlus", 1059 | "https://github.com/tylerclendenin/Sublime-PowerPaste", 1060 | "https://github.com/tynril/sublime-premake", 1061 | "https://github.com/uipoet/sublime-jshint", 1062 | "https://github.com/und1f/tau-time-tracker", 1063 | "https://github.com/UnicornForest/Unity3D", 1064 | "https://github.com/UnicornForest/Unity3DScriptReference", 1065 | "https://github.com/UnicornForest/Unity3DSnippets", 1066 | "https://github.com/unphased/SublimeStatusbarPath", 1067 | "https://github.com/uonick/dimmed", 1068 | "https://github.com/uonick/fatfree-snippets", 1069 | "https://github.com/vaanwd/sublime_drush", 1070 | "https://github.com/vaisaghvt/CheckTypos", 1071 | "https://github.com/Vandesdelca32/wowtoc-syntax", 1072 | "https://github.com/vbali/sublime-snakecase", 1073 | "https://github.com/vcharnahrebel/style-token", 1074 | "https://github.com/vhyza/exec-in-window", 1075 | "https://github.com/vi4m/sublime_python_imports", 1076 | "https://github.com/victorporof/Sublime-HTMLPrettify", 1077 | "https://github.com/victorporof/Sublime-JSHint", 1078 | "https://github.com/vidmaker/gyp-sublime-text", 1079 | "https://github.com/viisual/ASCII-Decorator", 1080 | "https://github.com/villimagg/Larapaste-sublime-theme", 1081 | "https://github.com/vim/MiniPy", 1082 | "https://github.com/vim/StickySearch", 1083 | "https://github.com/vincentmac/enlightened", 1084 | "https://github.com/vinhnx/Ciapre.tmTheme", 1085 | "https://github.com/vishr/local-history", 1086 | "https://github.com/vitorleal/Hex-to-RGB", 1087 | "https://github.com/viyano/sublime-oddly", 1088 | "https://github.com/vkostyukov/kotlin-sublime-package", 1089 | "https://github.com/vojtajina/sublime-BuildSwitcher", 1090 | "https://github.com/vojtajina/sublime-OpenRelated", 1091 | "https://github.com/voventus/AVR-ASM-Sublime", 1092 | "https://github.com/VPashkov/SublimeResizeGroupWithKeyboard", 1093 | "https://github.com/vprimachenko/Sublime2KeepOpen", 1094 | "https://github.com/wakatime/sublime-wakatime", 1095 | "https://github.com/Warin/SublimeTidyHTML", 1096 | "https://github.com/WarWithinMe/Sublime-CodeRunner", 1097 | "https://github.com/wass3r/tide-sublime", 1098 | "https://github.com/waynemoore/sublime-gherkin-formatter", 1099 | "https://github.com/wch/SendText", 1100 | "https://github.com/WebFont/webfont", 1101 | "https://github.com/WebGLTools/GL-Shader-Validator", 1102 | "https://github.com/welefen/KeymapManager", 1103 | "https://github.com/welovewordpress/SublimeHtmlTidy", 1104 | "https://github.com/welovewordpress/SublimePhpTidy", 1105 | "https://github.com/welovewordpress/SublimeWordPressCodex", 1106 | "https://github.com/wesbos/cobalt2", 1107 | "https://github.com/wesf90/rails-partial", 1108 | "https://github.com/whalenut/SublimeScaffolder", 1109 | "https://github.com/while1eq1/sublime-pastepm", 1110 | "https://github.com/whitequark/llvm.tmbundle", 1111 | "https://github.com/whoenig/SublimeCodeSearch", 1112 | "https://github.com/willurd/ScopeStatus", 1113 | "https://github.com/witsch/SublimePythonTidy", 1114 | "https://github.com/wjthomas9/duplicate-lines", 1115 | "https://github.com/wpp1983/hlsl", 1116 | "https://github.com/wronex/sublime-angelscript", 1117 | "https://github.com/WrtApp/Writeapp", 1118 | "https://github.com/wulftone/sublime-text-2-quick-file-move", 1119 | "https://github.com/wyne/sublime-stackmob-js-snippets", 1120 | "https://github.com/xamado/sublime-templateninja", 1121 | "https://github.com/Xaro/SublimeSendToPasteBin", 1122 | "https://github.com/xavi-/sublime-maybs-quit", 1123 | "https://github.com/xavi-/sublime-selectuntil", 1124 | "https://github.com/Xavura/CoffeeScript-Sublime-Plugin", 1125 | "https://github.com/xeno-by/sublime-ant", 1126 | "https://github.com/xeno-by/sublime-nemerle", 1127 | "https://github.com/xsnippet/sublime-xsnippet", 1128 | "https://github.com/xt99/sublimetext-php-haml", 1129 | "https://github.com/XuefengWu/EverythingSearch-sublime2", 1130 | "https://github.com/yangweijie/SublimeThinkPHP", 1131 | "https://github.com/yedderson/SublimeRestart", 1132 | "https://github.com/yrammos/SubLilyPond", 1133 | "https://github.com/yrammos/SublimeLog", 1134 | "https://github.com/yulanggong/IncrementSelection", 1135 | "https://github.com/z0rch/CoffeeScript-Lodash-snippets-for-Sublime-Text-2", 1136 | "https://github.com/ZaBlanc/RubyMotionSparrowSublimeCompletions", 1137 | "https://github.com/Zeelot/sublime-kohana", 1138 | "https://github.com/zerok/Sublime2-SwitchLanguage", 1139 | "https://github.com/zhongxingdou/AspNetSwitch", 1140 | "https://github.com/Zinggi/DictionaryAutoComplete", 1141 | "https://github.com/Zinggi/EasySettings", 1142 | "https://github.com/Zinggi/UnrealScriptIDE", 1143 | "https://github.com/zmbacker/RubyFormat", 1144 | "https://github.com/zoomix/SublimeToggleSymbol", 1145 | "https://github.com/zyxar/Sublime-CMakeLists", 1146 | "https://raw.github.com/accerqueira/sublime/v1.2/packages.json", 1147 | "https://raw.github.com/afterdesign/MacTerminal/master/packages.json", 1148 | "https://raw.github.com/ajryan/CSharpreter/master/packages.json", 1149 | "https://raw.github.com/akalongman/sublimetext-autobackups/master/packages.json", 1150 | "https://raw.github.com/akalongman/sublimetext-codeformatter/master/packages.json", 1151 | "https://raw.github.com/akalongman/sublimetext-stringutilities/master/packages.json", 1152 | "https://raw.github.com/amazedkoumei/SublimeKnifeSolo/master/packages.json", 1153 | "https://raw.github.com/Andr3as/Sublime-SurroundWith/master/packages.json", 1154 | "https://raw.github.com/angular-ui/AngularJS-sublime-package/master/packages.json", 1155 | "https://raw.github.com/aparajita/active4d-sublime/master/package_control.json", 1156 | "https://raw.github.com/aponxi/sublime-better-coffeescript/master/package.json", 1157 | "https://raw.github.com/apophys/sublime-packages/master/packages.json", 1158 | "https://raw.github.com/bits/ExpandSelectionToWhitespace-SublimeText/master/packages.json", 1159 | "https://raw.github.com/blachniet/sublime-mimosa/master/packages.json", 1160 | "https://raw.github.com/blueplanet/sublime-text-2-octopress/master/packages.json", 1161 | "https://raw.github.com/bradfeehan/SublimePHPCoverage/master/packages.json", 1162 | "https://raw.github.com/camperdave/EC2Upload/master/packages.json", 1163 | "https://raw.github.com/carlcalderon/ofLang/master/packages.json", 1164 | "https://raw.github.com/ccpalettes/sublime-lorem-text/master/packages.json", 1165 | "https://raw.github.com/chancedai/sublime-cross/master/packages.json", 1166 | "https://raw.github.com/chenha0/SwapSelection/master/packages.json", 1167 | "https://raw.github.com/chikatoike/IMESupport/master/packages.json", 1168 | "https://raw.github.com/chriswong/sublime-mootools-snippets/master/packages.json", 1169 | "https://raw.github.com/colinta/sublime_packages/master/packages.json", 1170 | "https://raw.github.com/connec/Open-in-ConEmu/master/packages.json", 1171 | "https://raw.github.com/corbinian/GrowlNotifier/master/packages.json", 1172 | "https://raw.github.com/csytan/sublime-text-2-github/master/packages.json", 1173 | "https://raw.github.com/dallbee/RandomText/master/packages.json", 1174 | "https://raw.github.com/damccull/sublimetext2-SolarizedToggle/master/packages.json", 1175 | "https://raw.github.com/danielmagnussons/orgmode/master/packages.json", 1176 | "https://raw.github.com/danielobrien/sublime-DLX-syntax/master/packages.json", 1177 | "https://raw.github.com/darinmorrison/sublime-packages/master/packages.json", 1178 | "https://raw.github.com/dexbol/sublime-TortoiseSVN/master/packages.json", 1179 | "https://raw.github.com/enriquein/JavaSetterGetter/master/packages.json", 1180 | "https://raw.github.com/fabric-engine/Sublime-KL/master/packages.json", 1181 | "https://raw.github.com/farcaller/DashDoc/master/packages.json", 1182 | "https://raw.github.com/FichteFoll/sublime_packages/master/package_control.json", 1183 | "https://raw.github.com/filcab/SublimeLLDB/master/packages.json", 1184 | "https://raw.github.com/Floobits/floobits-sublime/master/packages.json", 1185 | "https://raw.github.com/francodacosta/sublime-php-getters-setters/master/packages.json", 1186 | "https://raw.github.com/freewizard/sublime_packages/master/package_control.json", 1187 | "https://raw.github.com/gcollazo/sublime_packages/master/packages.json", 1188 | "https://raw.github.com/Harrison-M/indent.txt-sublime/master/packages.json", 1189 | "https://raw.github.com/haru01/EasyOpen/master/packages.json", 1190 | "https://raw.github.com/hgraca/sublime-text-2-php-refactor/master/packages.json", 1191 | "https://raw.github.com/himynameisjonas/sublime-ia-writer-opener/master/packages.json", 1192 | "https://raw.github.com/ikeike443/Sublime-Scalariform/master/packages.json", 1193 | "https://raw.github.com/int3h/SublimeFixMacPath/master/packages.json", 1194 | "https://raw.github.com/ivancduran/krakensnippets/master/packages.json", 1195 | "https://raw.github.com/jadb/st2-search-cakephp-api/master/packages.json", 1196 | "https://raw.github.com/jadb/st2-search-cakephp-book/master/packages.json", 1197 | "https://raw.github.com/janraasch/sublimetext-commitment/master/packages.json", 1198 | "https://raw.github.com/jcartledge/sublime-worksheet/master/packages.json", 1199 | "https://raw.github.com/jeffturcotte/sublime_packages/master/packages.json", 1200 | "https://raw.github.com/jfernandez/SublimeRailsEval/master/packages.json", 1201 | "https://raw.github.com/jfromaniello/sublime-unity-recents/master/packages.json", 1202 | "https://raw.github.com/joacodeviaje/aftersave/master/packages.json", 1203 | "https://raw.github.com/joomlapro/joomla3-sublime-snippets/master/packages.json", 1204 | "https://raw.github.com/jpswelch/sublime-google-tasks/master/packages.json", 1205 | "https://raw.github.com/jvantuyl/sublime_diagram_plugin/master/packages.json", 1206 | "https://raw.github.com/kairyou/SublimeTmpl/master/packages.json", 1207 | "https://raw.github.com/Kaizhi/SublimeUpdater/master/packages.json", 1208 | "https://raw.github.com/kallepersson/Sublime-Finder/master/packages.json", 1209 | "https://raw.github.com/Kasoki/FancyProjects/master/packages.json", 1210 | "https://raw.github.com/keeganstreet/sublime-elfinder/master/packages.json", 1211 | "https://raw.github.com/keeganstreet/sublime-specificity/master/packages.json", 1212 | "https://raw.github.com/kevinxucs/Sublime-Gitignore/master/packages.json", 1213 | "https://raw.github.com/kik0220/sublimetext_japanize/master/packages.json", 1214 | "https://raw.github.com/kylederkacz/lettuce-farmer/master/packages.json", 1215 | "https://raw.github.com/Learning/sublime_packages/master/packages.json", 1216 | "https://raw.github.com/leporo/SublimeYammy/master/packages.json", 1217 | "https://raw.github.com/lifted-studios/AutoCopyright/master/packages.json", 1218 | "https://raw.github.com/lucifr/CNPunctuationAutopair/master/packages.json", 1219 | "https://raw.github.com/lyapun/sublime-text-2-python-test-runner/master/packages.json", 1220 | "https://raw.github.com/mablo/sublime-text-2-meld-diff/master/packages.json", 1221 | "https://raw.github.com/Makopo/sublime-text-lsl/master/package.json", 1222 | "https://raw.github.com/Medalink/laravel-blade/master/packages.json", 1223 | "https://raw.github.com/mekwall/obsidian-color-scheme/master/packages.json", 1224 | "https://raw.github.com/merlinthered/sublime-rainmeter/master/packages.json", 1225 | "https://raw.github.com/mischah/Console-API-Snippets/master/packages.json", 1226 | "https://raw.github.com/Mozillion/SublimeSpeech/master/packages.json", 1227 | "https://raw.github.com/mrtnbroder/Meteor-Snippets/master/packages.json", 1228 | "https://raw.github.com/naomichi-y/php_syntax_checker/master/packages.json", 1229 | "https://raw.github.com/naomichi-y/string_counter/master/packages.json", 1230 | "https://raw.github.com/NicholasBuse/sublime_packages/master/packages.json", 1231 | "https://raw.github.com/nLight/Phing/master/packages.json", 1232 | "https://raw.github.com/noraesae/ClassHierarchy/master/packages.json", 1233 | "https://raw.github.com/phyllisstein/CheckBounce/master/packages.json", 1234 | "https://raw.github.com/phyllisstein/Koan/master/packages.json", 1235 | "https://raw.github.com/phyllisstein/Markboard3/master/packages.json", 1236 | "https://raw.github.com/quarnster/CompleteSharp/master/package.json", 1237 | "https://raw.github.com/quarnster/SublimeClang/master/package.json", 1238 | "https://raw.github.com/quarnster/SublimeJava/master/package.json", 1239 | "https://raw.github.com/recklesswaltz/Subtoise/master/packages.json", 1240 | "https://raw.github.com/relikd/plist-binary_sublime/master/packages.json", 1241 | "https://raw.github.com/robcowie/SublimeTODO/master/packages.json", 1242 | "https://raw.github.com/robertcollier4/AutoHotkey/master/packages.json", 1243 | "https://raw.github.com/robertcollier4/AutoItScript/master/packages.json", 1244 | "https://raw.github.com/robertcollier4/REG/master/packages.json", 1245 | "https://raw.github.com/ronmichael/sublime-sparql/master/packages.json", 1246 | "https://raw.github.com/royisme/SublimeOctopressTool/master/packages.json", 1247 | "https://raw.github.com/rpowers/sublime_stata/master/packages.json", 1248 | "https://raw.github.com/rse/sublime-scheme-rse/master/packages.json", 1249 | "https://raw.github.com/sdolard/sublime-jsrevival/master/packages.json", 1250 | "https://raw.github.com/seanliang/ConvertToUTF8/master/packages.json", 1251 | "https://raw.github.com/sentience/DokuWiki/master/packages.json", 1252 | "https://raw.github.com/sentience/HyperlinkHelper/master/packages.json", 1253 | "https://raw.github.com/shivkumarganesh/VisSub/master/packages.json", 1254 | "https://raw.github.com/sindresorhus/sublime-jsrun/master/packages.json", 1255 | "https://raw.github.com/smpanaro/sublime-spotify/master/packages.json", 1256 | "https://raw.github.com/sokolovstas/SublimeWebInspector/master/packages.json", 1257 | "https://raw.github.com/soncy/AutoComments-for-Sublime-Text-2/master/packages.json", 1258 | "https://raw.github.com/SublimeCodeIntel/SublimeCodeIntel/master/packages.json", 1259 | "https://raw.github.com/SublimeLinter/SublimeLinter/master/package_control.json", 1260 | "https://raw.github.com/superbob/SublimeTextLanguageFrench/master/packages.json", 1261 | "https://raw.github.com/svaiter/SublimeJEDI/master/packages.json", 1262 | "https://raw.github.com/tbfisher/sublimetext-Pandoc/master/packages.json", 1263 | "https://raw.github.com/tcrosen/recessify/master/packages.json", 1264 | "https://raw.github.com/Ted-Mohamed/Split/master/packages.json", 1265 | "https://raw.github.com/teddyknox/SublimeChromeRefresh/master/packages.json", 1266 | "https://raw.github.com/theadamlt/sublime_packages/master/packages.json", 1267 | "https://raw.github.com/ThomasKli/json_reindent/master/packages.json", 1268 | "https://raw.github.com/tiger2wander/sublime_packages/master/packages.json", 1269 | "https://raw.github.com/tillig/SublimeMSBuild/master/packages.json", 1270 | "https://raw.github.com/timonwong/sublime_packages/master/packages.json", 1271 | "https://raw.github.com/tmanderson/VintageLines/master/packages.json", 1272 | "https://raw.github.com/tomascayuelas/coolcodescheme/master/packages.json", 1273 | "https://raw.github.com/tsteur/sublimetext-tita/master/packages.json", 1274 | "https://raw.github.com/ttscoff/MarkdownEditing/master/packages.json", 1275 | "https://raw.github.com/twolfson/sublime-request/master/packages.json", 1276 | "https://raw.github.com/tzvetkoff/sublime_stupid_indent/master/packages.json", 1277 | "https://raw.github.com/vifo/SublimePerlTidy/master/packages.json", 1278 | "https://raw.github.com/vkocubinsky/sublime_packages/master/packages.json", 1279 | "https://raw.github.com/wallysalami/QuickLook/master/packages.json", 1280 | "https://raw.github.com/welaika/Sublime-Text-2-Wordless/master/packages.json", 1281 | "https://raw.github.com/weslly/sublime_packages/master/packages.json", 1282 | "https://raw.github.com/WhatWeDo/Sublime-Text-2-Compass-Build-System/master/packages.json", 1283 | "https://raw.github.com/wistful/SublimeAutoPEP8/master/packages.json", 1284 | "https://raw.github.com/wukkuan/AMD-Module-Editor/master/packages.json", 1285 | "https://raw.github.com/xgenvn/InputHelper/master/packages.json", 1286 | "https://raw.github.com/yangsu/sublime-io/master/packages.json", 1287 | "https://raw.github.com/yangsu/sublime-octopress/master/packages.json", 1288 | "https://raw.github.com/yangsu/sublime-vhdl/master/packages.json", 1289 | "https://raw.github.com/zfkun/sublime-kissy-snippets/master/packages.json" 1290 | ], 1291 | "package_name_map": { 1292 | "ac-ruby-snippets": "Arnold Clark Snippets for Ruby", 1293 | "ampscript-st2": "AmpScript Highlighter", 1294 | "angular-snippets": "AngularJS Snippets", 1295 | "antiki": "Antiki", 1296 | "APDL-Syntax": "APDL (ANSYS) Syntax Highlighting", 1297 | "aqua-theme": "Theme - Aqua", 1298 | "ASCII-Comment-Snippets": "ASCII Comment Snippets", 1299 | "ASCII-Decorator": "ASCII Decorator", 1300 | "AspNetSwitch": "Asp.Net File Switch", 1301 | "Async-Snippets": "Async Snippets", 1302 | "Auto-Encoding-for-Python": "Auto Encoding for Python", 1303 | "auto-encoding-for-ruby": "Auto Encoding for Ruby", 1304 | "awk-sublime": "Awk", 1305 | "base16-textmate": "Base16 Color Schemes", 1306 | "base64-fold": "Base64 Fold", 1307 | "BEMHTMLSublime": "BEMHTML", 1308 | "bitrix-painkiller": "Bitrix Painkiller", 1309 | "blade-snippets": "Blade Snippets", 1310 | "BlockCursorEverywhere": "Block Cursor Everywhere", 1311 | "boo-sublime": "Boo", 1312 | "Bootstrapper_snippets": "Laravel Bootstrapper Snippets", 1313 | "boron.tmtheme": "Boron Color Scheme", 1314 | "browsersupport": "Browser Support", 1315 | "bs3-sublime-plugin": "Bootstrap 3 Snippets", 1316 | "Bubububububad": "Bubububububad and Boneyfied Color Schemes", 1317 | "BuildParts": "BuildParts", 1318 | "BuildView": "Shows build output in a view", 1319 | "cakephp-tmbundle": "CakePHP (tmbundle)", 1320 | "Cappuccino-Sublime": "Cappuccino", 1321 | "Caret-History": "Caret History", 1322 | "CaseConversion": "Case Conversion", 1323 | "cbox-coldbox-sublime": "ColdBox Platform", 1324 | "Centurion": "Theme - Centurion", 1325 | "ChangeTracker": "Change Tracker", 1326 | "cheater": "Cheater", 1327 | "chrome-apis-sublime": "Chrome Apps and Extensions", 1328 | "ChucK.tmbundle": "ChucK Syntax", 1329 | "ci-codeintel-helper": "Codeigniter Codeintel Helper", 1330 | "ci-snippets": "CodeIgniter Snippets", 1331 | "Ciapre.tmTheme": "Ciapre Color Scheme", 1332 | "ClickableUrls_SublimeText2": "Clickable URLs", 1333 | "CLIPS-sublime": "CLIPS Rules", 1334 | "ClojureDoc-Search": "ClojureDocSearch", 1335 | "cobalt2" : "Theme - Cobalt2", 1336 | "cocos2d_lua_snippets":"cocos2d lua api", 1337 | "cocosyntax": "Coco R Syntax Highlighting", 1338 | "codefoo": "Code Foo", 1339 | "codeigniter-utilities": "CodeIgniter Utilities", 1340 | "codeivate-st": "Codeivate", 1341 | "CoffeeScript-Lodash-snippets-for-Sublime-Text-2": "Lo-Dash Snippets for CoffeeScript", 1342 | "CoffeeScript-Sublime-Plugin": "CoffeeScript", 1343 | "ColorConvert": "CSS Color Converter", 1344 | "ColorHighlighter": "Color Highlighter", 1345 | "colour-schemes": "Dayle Rees Color Schemes", 1346 | "CommentsAwareEnter": "Comments Aware Enter", 1347 | "Compline": "Line Completion", 1348 | "composer-sublime": "Composer", 1349 | "CopyNamespace": "Copy PHP Namespace", 1350 | "CoreBuilder_SublimeText": "CoreBuilder", 1351 | "CscopeSublime": "Cscope", 1352 | "csharp-build-singlefile-sublime-text-2": "C# Compile & Run", 1353 | "CSS-Less-ish": "CSS Less(ish)", 1354 | "CSS-Reset-Sublime-Snippet": "HTML5 Doctor CSS Reset snippet", 1355 | "CSS-Snippets": "CSS Snippets", 1356 | "CSScomb-Alpha-Sort-for-Sublime": "CSScomb Alpha Sort", 1357 | "CSScomb-for-Sublime": "CSScomb", 1358 | "cucumber-sublime2-bundle": "Cucumber", 1359 | "CUE-Sheet_sublime": "CUE Sheet", 1360 | "currentscope": "Current Scope", 1361 | "CustomTasks": "Custom Tasks", 1362 | "dark-pastel": "Dark Pastel Color Scheme", 1363 | "dart-sublime-bundle": "Dart", 1364 | "DashedComments": "Dashed Comments", 1365 | "DelphiStyleBookmarks": "Delphi Style Bookmarks", 1366 | "derby": "Derby - Bourbon & Neat Autocompletions", 1367 | "dfml-sublime-package": "DFML (for Dwarf Fortress raws)", 1368 | "dimmed": "Dimmed Color Scheme", 1369 | "DirectorySettings": "Directory Settings", 1370 | "Display-Functions": "Display Functions (Java)", 1371 | "DNS": "DNS Lookups", 1372 | "DobDark-Theme": "DobDark Color Scheme", 1373 | "doctrine-sublime-snippets": "Doctrine Snippets", 1374 | "DogEars": "Dog Ears", 1375 | "dogs-colour-scheme": "Dogs Colour Scheme", 1376 | "dotfiles-syntax-highlighting-st2": "Dotfiles Syntax Highlighting", 1377 | "DotNetNuke-SublimeText-2-Snippets": "DotNetNuke Snippets", 1378 | "drupal-sublimetext": "Drupal", 1379 | "drupal_sublime-snippets": "Drupal Snippets", 1380 | "duplicate-lines": "Duplicate Lines", 1381 | "dylan.tmbundle": "Dylan", 1382 | "editorconfig-sublime": "EditorConfig", 1383 | "EE-Add-On-Builder": "ExpressionEngine Add-On Builder", 1384 | "EE-ST2": "ExpressionEngine", 1385 | "EJS.tmLanguage": "EJS", 1386 | "elixir-tmbundle": "Elixir", 1387 | "Elm.tmLanguage": "Elm Syntax Highlighting", 1388 | "ember-snippets-for-sublime-text-2": "Ember.js Snippets", 1389 | "Emmet-Css-Snippets-for-Sublime-Text-2": "Emmet Css Snippets", 1390 | "emmet-sublime": "Emmet", 1391 | "Enhanced.HTML.CFML": "Enhanced HTML and CFML", 1392 | "enlightened": "Enlightened Color Scheme", 1393 | "ERB-Sublime-Snippets": "ERB Snippets", 1394 | "esuna-snippets": "Esuna Framework Snippets", 1395 | "eval_sel": "Eval Sel", 1396 | "EverythingSearch-sublime2": "Everything Search", 1397 | "exec-in-window": "Exec In Window", 1398 | "Exec-Parser-Sublime-Plugin": "Exec Parser", 1399 | "expand-selection-to-function-js": "Expand Selection to Function (JavaScript)", 1400 | "ExpandSelectionByParagraph": "Expand Selection by Paragraph", 1401 | "Express.tmTheme": "Express Color Scheme", 1402 | "eZ-Publish-Syntax": "eZ Publish Syntax", 1403 | "failcoder-theme": "Failcoder Color Scheme", 1404 | "fakeimg.sublime-snippet": "FakeImg.pl Image Placeholder Snippet", 1405 | "farcry-sublimetext": "FarCry", 1406 | "fatfree-snippets": "Fat-Free Framework Snippets", 1407 | "fe-sublime-phpunit": "PHPUnit Snippets", 1408 | "filezilla_import": "FilezillaImport", 1409 | "FilterLines": "Filter Lines", 1410 | "FindPlusPlus": "Find++", 1411 | "FLAC-Syntax": "FLAC", 1412 | "Flake8Lint": "Python Flake8 Lint", 1413 | "flatland": "Theme - Flatland", 1414 | "Flex-Sublimetext": "Flex", 1415 | "focus": "Focus", 1416 | "focus_last_tab": "Focus Last Tab", 1417 | "FollowFunctionPHP": "Follow Function PHP", 1418 | "fountain-sublime-text": "Fountain", 1419 | "GeneratePassword": "Generate Password", 1420 | "git-status-files": "Git Status Files", 1421 | "gitconfig-sublimetext": "Git Config", 1422 | "GitHubMarkdownPreview": "GitHub Flavored Markdown Preview", 1423 | "GL-Shader-Validator": "GL Shader Validator", 1424 | "Goto-Symbol": "Goto Symbol", 1425 | "grid6-sublime": "Grid6", 1426 | "gyp-sublime-text": "GYP", 1427 | "HackerNews-SublimeTextPlugin": "Hacker News", 1428 | "handcrafted-haml-textmate-bundle": "Haml", 1429 | "hasher": "Hasher", 1430 | "haxe-sublime-bundle": "Haxe", 1431 | "hayaku": "Hayaku - tools for writing CSS faster", 1432 | "hex-bin_system": "Hex-Bin System", 1433 | "Hex-to-HSL-Color": "Hex to HSL Color Converter", 1434 | "Hex-to-RGB": "Hex to RGB Converter", 1435 | "Hhhhold-tag-generator": "Hhhhold.com Placeholder Image Tag Generator", 1436 | "HighlightWhitespaces": "Highlight Whitespaces", 1437 | "HipsterIpsum": "Hipster Ipsum", 1438 | "Hogan-Build": "Hogan Build", 1439 | "hookblime": "Hookblime", 1440 | "Html-compressor": "HTML Compressor", 1441 | "html-email-snippets": "HTML Email Snippets", 1442 | "HTML-Snippets": "HTML Snippets", 1443 | "HypertextTypographer": "Hypertext Typographer", 1444 | "iced-coffee-script-tmbundle": "IcedCoffeeScript", 1445 | "Idoc-sublime": "Idoc", 1446 | "IncrementSelection": "Increment Selection", 1447 | "indent.txt-sublime": "Indent.txt", 1448 | "inline-calculator": "Inline Calculator", 1449 | "InsertNums": "Insert Sequences", 1450 | "ipsums": "Various Ipsum Snippets", 1451 | "itodo": "iTodo", 1452 | "Jade-Snippets-for-Sublime-Text-2": "Jade Snippets", 1453 | "jade-tmbundle": "Jade", 1454 | "JavaScriptNext.tmLanguage": "JavaScriptNext - ES6 Syntax", 1455 | "jinja2-tmbundle": "Jinja2", 1456 | "jprop-cleaner":"Java Property Cleaner", 1457 | "js-beautify-sublime": "Javascript Beautify", 1458 | "js-console-sublime-snippets": "JavaScript Console", 1459 | "js-patterns-sublime-snippets": "JavaScript Patterns", 1460 | "JS-Snippets": "JS Snippets", 1461 | "JSHint-Inline": "JSHint Inline", 1462 | "Julia-sublime": "Julia", 1463 | "JustPaste": "Just Paste", 1464 | "Kohana234-sublimeText2-plugin": "Kohana 2.x Snippets", 1465 | "koken-sublime": "Koken", 1466 | "kotlin-sublime-package": "Kotlin", 1467 | "Language---Up-Goer-5": "Language - Up-Goer-5", 1468 | "Larapaste-sublime-theme": "Laravel Color Scheme", 1469 | "Laravel-4-Artisan": "Laravel 4 Artisan", 1470 | "laravel4-snippets": "Laravel 4 Snippets", 1471 | "LaTeX-Track-Changes": "LaTeX Track Changes", 1472 | "Legal-Markdown-Sublime": "Legal Document Creator", 1473 | "Legal-Snippets-Sublime": "Legal Document Snippets", 1474 | "LESS-build-sublime": "LESS-build", 1475 | "LESS-sublime": "LESS", 1476 | "li3_sublime": "Lithium Snippets", 1477 | "lioshiScheme": "lioshi Color Scheme", 1478 | "livecss": "Live CSS", 1479 | "LiveReload-sublimetext2": "LiveReload", 1480 | "LiveScript.tmbundle": "LiveScript", 1481 | "llvm.tmbundle": "LLVM", 1482 | "local-history": "Local History", 1483 | "LuaSublime": "Lua Dev", 1484 | "M68k-Assembly": "M68k Assembly", 1485 | "madebyphunky": "Madebyphunky Color Scheme", 1486 | "mako-tmbundle": "Mako", 1487 | "mdTodo": "Markdown Todo", 1488 | "Media-Query-Snippets": "CSS Media Query Snippets", 1489 | "mips-syntax": "MIPS Syntax", 1490 | "mirodark-st2": "Mirodark Color Scheme", 1491 | "modx-sublimetext-2": "MODx Revolution Snippets", 1492 | "mongomapper-sublime-text2-snippets": "Mongomapper Snippets", 1493 | "monokai-blueberry": "Monokai Blueberry Color Scheme", 1494 | "moscowml": "Moscow ML", 1495 | "mreq-theme": "Mreq Color Scheme", 1496 | "MTML-ST2": "MTML Completions", 1497 | "MultiLang": "MultiLang Color Scheme", 1498 | "MySignaturePlugin": "Autocomplete Javascript with Method Signature", 1499 | "neat-sass-snippets": "Neat Sass Snippets", 1500 | "Nette-package-for-Sublime-Text-2": "Nette", 1501 | "nexus-theme": "Theme - Nexus", 1502 | "nimrod-sublime": "Nimrod", 1503 | "NSIS-Sublime-Text": "NSIS Autocomplete and Snippets", 1504 | "NSIS-Sublime-Text-Addons": "NSIS Autocomplete (Add-ons)", 1505 | "Objc-Strings-Syntax-Language": "objc .strings syntax language", 1506 | "Oblivion": "Oblivion Color Scheme", 1507 | "obsidian-color-scheme": "Obsidian Color Scheme", 1508 | "OpaSublimeText": "Opa", 1509 | "Open-Browser-SublimeText2-Plugin": "Search in Browser", 1510 | "open-url": "Open URL", 1511 | "openfolder": "Open Folder", 1512 | "package-bundler": "Package Bundler", 1513 | "PandocAcademic": "Pandoc Academic", 1514 | "Papyrus_Assembly": "Papyrus Assembly", 1515 | "pasteselonclick": "PasteSelOnClick", 1516 | "PathToFile": "Path to File", 1517 | "PEGjs.tmbundle": "PEG.js", 1518 | "Pep8Lint": "Python Pep8 Lint", 1519 | "Perv-ColorScheme": "Perv - Color Scheme", 1520 | "PgSQL-Sublime": "PgSQL", 1521 | "phoenix-theme": "Theme - Phoenix", 1522 | "PHP-MySQLi-connection": "PHP MySQLi connection", 1523 | "PHP-Twig.tmbundle": "PHP-Twig", 1524 | "phpunit-sublime-completions": "PHPUnit Completions", 1525 | "Pig": "Apache Pig", 1526 | "placester-st2-plugin": "Placester", 1527 | "play2-sublimetext2": "Play 2.0", 1528 | "PowerMTML-ST2": "PowerMTML Completions", 1529 | "pre-sublime": "Pre language syntax highlighting", 1530 | "PresetCommand": "Preset Command", 1531 | "processing-sublime": "Processing", 1532 | "Python-Auto-Complete": "Python Auto-Complete", 1533 | "PythonAnywhereEditor": "Python Anywhere Editor", 1534 | "PythonPEP8Autoformat": "Python PEP8 Autoformat", 1535 | "quark-php-sublime": "QuarkPHP", 1536 | "Rails-Latest-Migration": "Rails Latest Migration", 1537 | "rails-partial": "Rails Partial", 1538 | "railsdev-sublime-snippets": "Rails Developer Snippets", 1539 | "RailsMigrationsList": "Rails Migrations List", 1540 | "RandomHEXColor": "Random HEX Color", 1541 | "RandomMessage": "Random Message", 1542 | "raydric-color-scheme": "Raydric - Color Scheme", 1543 | "Red-Planet-Theme": "Red Planet Color Scheme", 1544 | "refined-theme": "Theme - Refined", 1545 | "Repeat-Macro": "Repeat Macro", 1546 | "RPMSpec": "RPM Spec Syntax", 1547 | "rspec-tmbundle": "RSpec (snippets and syntax)", 1548 | "Rtools": "R Tools", 1549 | "ruby-extract-method": "Ruby Extract Method", 1550 | "ruby-slim-tmbundle": "Ruby Slim", 1551 | "RubyBlockConverter": "Ruby Block Converter", 1552 | "RubyMotionSparrowSublimeCompletions": "RubyMotion Sparrow Framework Autocomplete", 1553 | "RubyMotionSublimeCompletions": "RubyMotion Autocomplete", 1554 | "RubyPipe": "Ruby Pipe Text Processing", 1555 | "SASS-Build-SublimeText2": "SASS Build", 1556 | "SASS-Snippets": "SASS Snippets", 1557 | "sass-textmate-bundle": "Sass", 1558 | "saulhudson-color-schemes": "Color Scheme - saulhudson", 1559 | "scriptcs-sublime": "scriptcs", 1560 | "SCSS-Snippets": "SCSS Snippets", 1561 | "SCSS.tmbundle": "SCSS", 1562 | "SearchInProject_SublimeText2": "SearchInProject", 1563 | "setdjangosyntax": "SetDjangoSyntax", 1564 | "Shell-Turtlestein": "Shell Turtlestein", 1565 | "SILK-snippets": "Silk Web Toolkit Snippets", 1566 | "simple-clone": "SimpleClone", 1567 | "SimpleTestingSublime": "SimpleTesting", 1568 | "Six.tmLanguage": "Six - Future JavaScript Syntax", 1569 | "sleeplessmind-color-scheme": "Color Scheme - Sleeplessmind", 1570 | "SmartDuplicate-Sublime": "Smart Duplicate", 1571 | "SML-Language-Definition": "SML (Standard ML)", 1572 | "soda-theme": "Theme - Soda", 1573 | "Solarized": "Solarized Color Scheme", 1574 | "sourcetalk_st2": "SoucreTalk (real time code discussions)", 1575 | "SPARC-sublime": "SPARC Assembly", 1576 | "sproutcore-sublime-text-2-package": "SproutCore Snippets and JSHint Integration", 1577 | "ST-FutureFunk": "Future Funk - Color Scheme", 1578 | "ST2-Backbone.Marionette": "Backbone.Marionette", 1579 | "ST2-CommandOnSave": "CommandOnSave", 1580 | "ST2-ComputerCraft-Package": "ComputerCraft Package", 1581 | "st2-drupal-autocomplete": "Drupal Project Autocomplete", 1582 | "ST2-GitHubinator": "GitHubinator", 1583 | "ST2-MDN-Search": "MDN Search", 1584 | "st2-nil-theme": "Theme - Nil", 1585 | "st2-pseudo-osx-theme": "Theme - Pseudo OSX", 1586 | "st2-reeder-theme": "Theme - Reeder", 1587 | "st2-refresh-theme": "Theme - Refresh", 1588 | "st2-search-cakephp-api": "Search CakePHP API", 1589 | "st2-search-cakephp-book": "Search CakePHP Book", 1590 | "st2-snippet-ci2-mc": "CodeIgniter 2 ModelController", 1591 | "ST2-TiSearch": "Titanium API Search", 1592 | "ST2-TitaniumDoc": "Titanium API Document", 1593 | "ST2-Whitespaces": "Whitespaces", 1594 | "ST2Nginx": "nginx", 1595 | "ST2Slate": "Slate", 1596 | "StatusBarExtension": "Status Bar Extension", 1597 | "STEmacsModelines": "Emacs-like Modelines", 1598 | "Stino": "Arduino-like IDE", 1599 | "style-token": "StyleToken", 1600 | "subl-esp": "ESP (EcmaScript Pages) Edit Mode", 1601 | "subl.slax.package": "SLAX", 1602 | "Sublime HTTP Response Headers Snippets": "HTTP Response Headers Snippets", 1603 | "Sublime-ActionScript-3": "ActionScript 3", 1604 | "Sublime-AdvancedNewFile": "AdvancedNewFile", 1605 | "sublime-aery32": "Aery32", 1606 | "sublime-alom": "PHP Namespace Command", 1607 | "sublime-aml": "Abstract Markup Language", 1608 | "sublime-angelscript": "AngelScript", 1609 | "Sublime-AngularJS-Coffee-Completions": "AngularJS (CoffeeScript)", 1610 | "sublime-ant": "Ant", 1611 | "Sublime-Ant-Buildfile": "Ant Buildfile", 1612 | "sublime-anyword-completion": "Anyword completion", 1613 | "Sublime-Apidock": "Apidock", 1614 | "Sublime-Aqueducts": "Aqueducts", 1615 | "sublime-ariatemplates-highlighter": "AriaTemplates Highlighter", 1616 | "sublime-ariatemplates-snippets": "AriaTemplates Snippets", 1617 | "Sublime-ARM-Assembly": "ARM Assembly", 1618 | "sublime-artisan": "Artisan", 1619 | "sublime-AsAbove": "AsAbove", 1620 | "Sublime-atoum": "atoum", 1621 | "sublime-AutoPHPDollar": "AutoPHPDollar", 1622 | "sublime-autoprefixer": "Autoprefixer", 1623 | "sublime-aweibo": "Aweibo", 1624 | "sublime-behat-snippets": "Behat Snippets", 1625 | "sublime-behat-syntax": "Behat", 1626 | "Sublime-BetaCode": "BetaCode", 1627 | "Sublime-BHT-BASIC": "BHT-BASIC", 1628 | "sublime-blogify": "Blogify", 1629 | "sublime-blusted": "Blusted Scheme", 1630 | "sublime-boo": "Boo & BooJs", 1631 | "sublime-bower": "Bower", 1632 | "sublime-build-on-save": "Build on Save", 1633 | "sublime-BuildSwitcher": "Build Switcher", 1634 | "sublime-capybara-snippets": "Capybara Snippets", 1635 | "sublime-chai-full-completions": "Chai Completions", 1636 | "sublime-chordpro": "ChordPro", 1637 | "Sublime-CMakeLists": "CMake", 1638 | "sublime-code-preview": "Code Preview", 1639 | "sublime-code2docs": "Code2Docs Documentation Generator (docco)", 1640 | "Sublime-CodeRunner": "Code Runner", 1641 | "sublime-coffee-compile": "CoffeeCompile", 1642 | "Sublime-CoffeeScript-Formatter": "Coffee Formatter", 1643 | "sublime-coffeescript-function-finder": "CoffeeScript Function Finder", 1644 | "sublime-color-schemes": "Color Schemes by carlcalderon", 1645 | "sublime-colorpick": "ColorPick", 1646 | "Sublime-Column-Select": "Column Select", 1647 | "sublime-cotonti": "Cotonti", 1648 | "sublime-css-auto-comments": "CSS Auto Commenting", 1649 | "sublime-css-selector-reveal": "CSS Selector Reveal", 1650 | "sublime-csslint": "CSSLint", 1651 | "Sublime-Csslisible": "Csslisible", 1652 | "sublime-cucumber-completion": "Cucumber Completion", 1653 | "sublime-cucumber-step-finder": "Cucumber Step Finder", 1654 | "sublime-cypher": "Cypher", 1655 | "sublime-dafny": "Dafny", 1656 | "sublime-dblp": "DBLP Search", 1657 | "sublime-debugkiller": "Debug Killer", 1658 | "sublime-DefaultFileType": "Default File Type", 1659 | "sublime-django-click": "Django Click", 1660 | "Sublime-Dummy-Image-Generator": "Dummy Image Generator", 1661 | "sublime-duplicate-same": "Duplicate Same", 1662 | "sublime-dustjs": "Dust.js", 1663 | "sublime-EasyMotion": "EasyMotion", 1664 | "sublime-eco": "eco", 1665 | "Sublime-ECT": "ECT", 1666 | "sublime-edit-history": "Edit History", 1667 | "sublime-eggplant-parm": "Eggplant Parm Color Scheme", 1668 | "sublime-ensime": "Ensime", 1669 | "sublime-esformatter": "EsFormatter", 1670 | "Sublime-Evaluate": "Evaluate", 1671 | "sublime-exampleoverflow": "Example Overflow", 1672 | "sublime-expand-selection-to-quotes": "Expand Selection to Quotes", 1673 | "Sublime-Fabric": "Fabric Tasks", 1674 | "Sublime-FASM-x86": "FASM x86", 1675 | "Sublime-File-Navigator": "Sublime File Navigator", 1676 | "sublime-fillcfquery": "Fill CF Query", 1677 | "sublime-fillerati": "Fillerati", 1678 | "sublime-find-function-definition": "Find Function Definition", 1679 | "sublime-find-non-ascii": "Find Non ASCII Characters", 1680 | "sublime-fish-shell": "fish-shell", 1681 | "sublime-friendpaste": "Paste to friendpaste.com", 1682 | "sublime-frontend-delight": "Color Scheme - Frontend Delight", 1683 | "sublime-fscompletion": "FileSystem Autocompletion", 1684 | "sublime-gams": "GAMS language", 1685 | "Sublime-Gauche-Syntax": "Gauche", 1686 | "sublime-gbk": "GBK Encoding Support", 1687 | "sublime-gem-browser": "Gem Browser", 1688 | "sublime-gherkin-formatter": "Gherkin (Cucumber) Formatter", 1689 | "sublime-glsl": "OpenGL Shading Language (GLSL)", 1690 | "Sublime-GLua-Highlight": "GMod Lua", 1691 | "sublime-google-closure-snippets": "Google Closure Library snippets", 1692 | "sublime-goto-open-file": "GotoOpenFile", 1693 | "sublime-grunt": "Grunt", 1694 | "Sublime-Hacker-News-Reader": "Hacker News Reader", 1695 | "sublime-hamlpy": "Hamlpy", 1696 | "sublime-helios": "Helios", 1697 | "sublime-horizontal-scroll": "Horizontal Scroll", 1698 | "sublime-howdoi": "howdoi", 1699 | "sublime-html-to-haml": "HTML2Haml", 1700 | "sublime-html-to-jade": "HTML2Jade", 1701 | "Sublime-HTMLPrettify": "HTML-CSS-JS Prettify", 1702 | "sublime-impactjs": "ImpactJS", 1703 | "sublime-ipython-integration": "IPython Integration", 1704 | "sublime-javap": "Javap", 1705 | "Sublime-JavaScript-API-Completions": "JavaScript and jQuery API Completions", 1706 | "sublime-jquery-coffee": "jQuery Snippets for Coffeescript", 1707 | "sublime-jquery-mobile-snippets": "jQuery Mobile Snippets", 1708 | "sublime-jquery-snippets": "jQuery Snippets pack", 1709 | "sublime-js-minify": "JS Minify", 1710 | "sublime-js-snippets": "JavaScript Snippets", 1711 | "sublime-js2coffee": "JS2Coffee", 1712 | "sublime-jsdocs": "DocBlockr", 1713 | "Sublime-JSHint": "JSHint Gutter", 1714 | "sublime-jshint": "JSHint", 1715 | "Sublime-JSLint": "JSLint", 1716 | "sublime-jsvalidate": "JS Validation using Esprima", 1717 | "sublime-kohana": "Kohana", 1718 | "sublime-kwrite-color-scheme": "KWrite Color Scheme", 1719 | "sublime-laravelgenerator": "Laravel Generator", 1720 | "Sublime-Lasso": "Lasso", 1721 | "sublime-last-edit": "LastEdit", 1722 | "sublime-ledger-syntax": "Ledger syntax highlighting", 1723 | "sublime-less2css": "Less2Css", 1724 | "sublime-levels": "Levels", 1725 | "sublime-licence-snippets": "Licence Snippets", 1726 | "sublime-lift": "Lift Snippets", 1727 | "sublime-liquid": "Liquid", 1728 | "sublime-lispindent": "lispindent", 1729 | "sublime-list-less-vars": "List LESS Variables", 1730 | "sublime-list-stylesheet-vars": "List stylesheet variables", 1731 | "sublime-logger-snippets": "Logger Snippets", 1732 | "Sublime-Loom": "Loom Game Engine", 1733 | "sublime-magento-TemplateCopy": "Magento - TemplateCopy", 1734 | "sublime-mailto": "Send by Mail", 1735 | "sublime-maperitive": "Maperitive", 1736 | "sublime-markdown-extended": "Markdown Extended", 1737 | "sublime-maybs-quit": "Maybs Quit", 1738 | "Sublime-Minifier": "Minifier", 1739 | "sublime-minkextension": "MinkExtension default feature step completions", 1740 | "Sublime-Missing-Palette-Commands": "Missing Palette Commands", 1741 | "Sublime-Moai-Debugger":"Moai Debugger", 1742 | "sublime-mocha-runner": "Mocha Runner", 1743 | "sublime-mocha-snippets": "Mocha Snippets", 1744 | "Sublime-Mongo-PHP": "MongoDB - PHP Completions", 1745 | "sublime-monokai-extended": "Monokai Extended", 1746 | "Sublime-MoonScript": "MoonScript", 1747 | "sublime-named": "Named (Bind) Helpers", 1748 | "sublime-nemerle": "Nemerle", 1749 | "sublime-node-require": "Require Node.js Modules Helper", 1750 | "sublime-nose-snippets": "Python Nose Testing Snippets", 1751 | "sublime-octopress": "Octopress Snippets", 1752 | "sublime-oddly": "Oddly", 1753 | "sublime-open-path": "Open project path by shortcut", 1754 | "Sublime-Open-Shading-Language": "Open Shading Language", 1755 | "sublime-OpenRecentFiles": "Open Recent Files", 1756 | "sublime-OpenRelated": "Open Related", 1757 | "sublime-paste-as-link": "Paste as Link", 1758 | "sublime-pastepm": "Paste to paste.pm", 1759 | "sublime-pelican": "Pelican", 1760 | "sublime-phix-color-scheme": "Phix Color Scheme", 1761 | "sublime-php-namespace": "PhpNamespace", 1762 | "sublime-phpcs": "Phpcs", 1763 | "sublime-phpdocumentor": "phpDocumentor", 1764 | "sublime-phpdox": "PhpDox", 1765 | "sublime-phpsnippets": "Additional PHP Snippets", 1766 | "sublime-phpunit": "PHPUnit", 1767 | "Sublime-Pipe-Dream" : "Pipe Dream", 1768 | "sublime-pkstheme" : "PKs Color Scheme", 1769 | "Sublime-Placehold.it": "Placehold.it Image Tag Generator", 1770 | "sublime-pman": "Pman", 1771 | "Sublime-Pomodoro": "Pomodoro", 1772 | "Sublime-PowerPaste": "PowerPaste", 1773 | "sublime-premake": "Premake", 1774 | "sublime-projecttreetemplater": "ProjectTreeTemplater", 1775 | "sublime-puppet-syntax": "Puppet Syntax checking", 1776 | "sublime-pytags": "PyTags", 1777 | "sublime-racket": "Racket", 1778 | "sublime-rails-snippets": "Ruby on Rails snippets", 1779 | "sublime-recess": "Twitter Recess", 1780 | "sublime-related-files": "Related Files", 1781 | "sublime-require-helper": "Require Helper", 1782 | "sublime-rmate": "Rmate", 1783 | "sublime-robot-plugin" : "Robot Framework", 1784 | "Sublime-Rosetta-Get": "Rosetta Code Snippets", 1785 | "sublime-roy": "Roy", 1786 | "sublime-rst-completion": "Restructured Text (RST) Snippets", 1787 | "sublime-rust": "Rust", 1788 | "sublime-rvm": "RVM", 1789 | "sublime-sane-snippets": "SaneSnippets", 1790 | "Sublime-SBT-Runner": "SBT Runner", 1791 | "sublime-scheme-cycler": "SchemeCycler", 1792 | "sublime-selection-tools": "SelectionTools", 1793 | "sublime-selectuntil": "SelectUntil", 1794 | "sublime-selenium-snippets": "Selenium Snippets", 1795 | "sublime-shrink-whitespaces": "Shrink Whitespaces", 1796 | "sublime-sjson": "SJSON", 1797 | "sublime-slug": "Slug", 1798 | "sublime-smali": "Smali", 1799 | "sublime-smart-delete": "Smart Delete", 1800 | "sublime-smart-match": "Smart Match", 1801 | "sublime-smarty": "Smarty", 1802 | "sublime-snake": "Snake", 1803 | "sublime-snakecase": "snake_case", 1804 | "sublime-snippets": "Laravel Snippets", 1805 | "Sublime-Snipt": "Snipt.net", 1806 | "Sublime-Snipt-Snippet-Fetcher": "Snipt Snippet Fetcher", 1807 | "sublime-sort-numerically": "Sort Lines (Numerically)", 1808 | "sublime-Spark": "Spark", 1809 | "sublime-sparql-runner": "SPARQL Runner", 1810 | "sublime-SplitScreen": "SplitScreen", 1811 | "sublime-SplitScreen-Resizer": "SplitScreen-Resizer", 1812 | "Sublime-SQF-Language": "SQF Language", 1813 | "sublime-stackmob-js-snippets": "StackMob JS Snippets", 1814 | "sublime-stan": "Stan", 1815 | "sublime-strapdown-preview": "Strapdown Markdown Preview", 1816 | "sublime-sublimeweibo": "SublimeWeibo", 1817 | "sublime-surround": "Surround", 1818 | "Sublime-Susy": "Susy Snippets", 1819 | "sublime-switch": "Switch", 1820 | "sublime-symfony2": "Symfony2 Snippets", 1821 | "Sublime-SymfonyCommander": "SymfonyCommander", 1822 | "sublime-tabfilter": "Tab Filter", 1823 | "sublime-task-timer": "Task Timer", 1824 | "sublime-taskwarrior": "Taskwarrior", 1825 | "sublime-templateninja": "TemplateNinja", 1826 | "sublime-tern": "TernJS", 1827 | "sublime-test-double": "Test Double", 1828 | "Sublime-Text--cdnjs": "cdnjs", 1829 | "Sublime-Text-2-Backbone.js-package": "Backbone.js", 1830 | "sublime-text-2-beanstalk": "Beanstalk Tools", 1831 | "sublime-text-2-clipboard-history": "Clipboard History", 1832 | "Sublime-Text-2-Color-Schemes": "Clay Schubiner Color Schemes", 1833 | "Sublime-Text-2-CSV-Plugin": "CSV", 1834 | "sublime-text-2-Django-DocsSearch": "Django-DocsSearch", 1835 | "sublime-text-2-folder-list": "Folder List", 1836 | "sublime-text-2-front-end": "Front End Snippets", 1837 | "sublime-text-2-git": "Git", 1838 | "sublime-text-2-github": "GitHub.app Menu", 1839 | "sublime-text-2-github-tools": "Github Tools", 1840 | "Sublime-Text-2-GoogleTranslate-Plugin": "Google Translate", 1841 | "Sublime-Text-2-Goto-CSS-Declaration": "Goto-CSS-Declaration", 1842 | "sublime-text-2-goto-documentation": "Goto Documentation", 1843 | "Sublime-Text-2-Goto-Drupal-API": "Goto Drupal API", 1844 | "sublime-text-2-GrepCodeSearch": "Grep Code Search", 1845 | "sublime-text-2-guard-helpers": "GuardHelpers", 1846 | "sublime-text-2-hash-syntax": "Ruby 1.9 Hash Converter", 1847 | "sublime-text-2-image2base64": "Image2Base64", 1848 | "Sublime-Text-2-Inc-Dec-Value": "Inc-Dec-Value", 1849 | "sublime-text-2-ini": "INI", 1850 | "sublime-text-2-jasmine": "Jasmine", 1851 | "Sublime-Text-2-Lazy-Backbone.js-Package": "Lazy Backbone.js", 1852 | "sublime-text-2-marked": "Marked.app Menu", 1853 | "Sublime-Text-2-Mina": "Mina", 1854 | "sublime-text-2-moo": "Moo", 1855 | "sublime-text-2-mxunit": "MXUnit", 1856 | "Sublime-Text-2-OpenEdge-ABL": "OpenEdge ABL", 1857 | "Sublime-Text-2-Perforce-Plugin": "Perforce", 1858 | "Sublime-Text-2-PureCM-Plugin": "PureCM", 1859 | "sublime-text-2-quick-file-move": "QuickFileMove", 1860 | "Sublime-Text-2-Revert-All-Files": "Revert All Files", 1861 | "sublime-text-2-revert-hash-syntax": "Ruby Hash Reverter", 1862 | "sublime-text-2-ruby-markers": "Ruby Markers", 1863 | "sublime-text-2-ruby-tests": "RubyTest", 1864 | "Sublime-Text-2-Search-Anywhere-Plugin": "Search Anywhere", 1865 | "sublime-text-2-seeing-is-believing": "Seeing Is Believing", 1866 | "sublime-text-2-sourcetree": "SourceTree.app Menu", 1867 | "Sublime-Text-2-Stackoverflow-Plugin": "Search Stack Overflow", 1868 | "Sublime-Text-2-Table-Cleaner": "Table Cleaner", 1869 | "sublime-text-2-twig": "Twig", 1870 | "Sublime-Text-2-Vlt-Plugin": "Vlt", 1871 | "sublime-text-2-wordpress": "Wordpress", 1872 | "sublime-text-2-wpseek": "wpseek.com WordPress Function Lookup", 1873 | "sublime-text-2-xmpfilter": "XMPFilter", 1874 | "Sublime-Text-Block-Nav": "Block Nav", 1875 | "sublime-text-caniuse": "Can I Use", 1876 | "Sublime-Text-Cycle-Setting": "Cycle Setting", 1877 | "sublime-text-doctypes": "Doctypes", 1878 | "sublime-text-go-to-file": "GoToFile", 1879 | "sublime-text-move-tabs": "Move Tabs", 1880 | "sublime-text-pyrocms-snippets": "PyroCMS Snippets", 1881 | "sublime-text-refactor": "JavaScript Refactor", 1882 | "sublime-text-shebang": "Shebang", 1883 | "sublime-text-silverstripe": "SilverStripe", 1884 | "sublime-text-theme-night": "Theme - Night", 1885 | "Sublime-Text-Themes": "Theme - Farzher", 1886 | "sublime-text2-yii-docs": "Yii Framework Docs Search", 1887 | "sublime-tfs": "Sublime TFS", 1888 | "sublime-theme-Cube2": "Cube2Media Color Scheme", 1889 | "sublime-theme-railscasts": "RailsCasts Colour Scheme", 1890 | "sublime-ti-build": "Titanium Build", 1891 | "sublime-tipJS-snippets": "tipJS Snippets", 1892 | "sublime-titlecase": "Smart Title Case", 1893 | "sublime-tmux-syntax-highlight": "Tmux", 1894 | "sublime-todomanager": "Todo Manager", 1895 | "sublime-ToggleMinimapOnScroll": "ToggleMinimapOnScroll", 1896 | "sublime-ToggleQuotes": "ToggleQuotes", 1897 | "sublime-tomdoc": "TomDoc+", 1898 | "sublime-tomorrow-theme": "Tomorrow Color Schemes", 1899 | "sublime-twee": "Twee", 1900 | "Sublime-Tweet": "Sublime Tweet", 1901 | "Sublime-Twitter-Bootstrap-ClassNames": "Twitter Bootstrap ClassNames Completions", 1902 | "sublime-twitter-bootstrap-snippets": "Twitter Bootstrap Snippets", 1903 | "sublime-typescript": "TypeScript", 1904 | "sublime-typescript-compiler": "TypeScript Compiler", 1905 | "sublime-underscorejs-snippets": "Underscore.js Snippets", 1906 | "sublime-unittest": "Unittest (python)", 1907 | "sublime-v8": "Sublime V8", 1908 | "sublime-vagrant": "Vagrant", 1909 | "Sublime-VDF-Languages": "VDF", 1910 | "sublime-verilog": "Verilog", 1911 | "sublime-view-in-browser": "View In Browser", 1912 | "sublime-view-movement": "View Movement", 1913 | "sublime-wakatime": "WakaTime", 1914 | "sublime-webloader": "Webloader", 1915 | "sublime-wombat-theme": "Wombat Theme", 1916 | "Sublime-Wrap-Plus": "Wrap Plus", 1917 | "sublime-xaml": "XAML", 1918 | "sublime-xml-guesser": "xml-guesser", 1919 | "sublime-xpressengine": "XpressEngine", 1920 | "sublime-xsnippet": "XSnippet", 1921 | "sublime-yardoc": "yardoc", 1922 | "sublime-yii-snippets": "Yii Framework Snippets", 1923 | "Sublime.Markdown2Clipboard": "Markdown to Clipboard", 1924 | "Sublime2-SwitchLanguage": "SwitchLanguage", 1925 | "Sublime2-TreeTop": "TreeTop", 1926 | "Sublime2-Wordpress-Dev-Plugin": "WordpressDev", 1927 | "Sublime2KeepOpen": "Keep Open On Last Tab Close", 1928 | "Sublime2pdf": "2pdf", 1929 | "sublime_alphpetize": "Alphpetize", 1930 | "sublime_context_build": "ContextBuild", 1931 | "sublime_diagram_plugin": "Diagram", 1932 | "sublime_drush": "Drush", 1933 | "sublime_file_switcher": "File Switcher", 1934 | "sublime_guard": "Guard", 1935 | "sublime_new_from_selection": "New from Selection", 1936 | "sublime_python_imports": "Python Imports Sorter", 1937 | "sublime_rubocop": "RuboCop", 1938 | "sublime_scaffolding": "Scaffolding", 1939 | "sublime_splittobuffer": "Split To Buffer", 1940 | "sublime_text_alternative_autocompletion": "Alternative Autocompletion", 1941 | "sublime_unicode_nbsp": "Unicode Character Highlighter", 1942 | "sublime_valign": "VAlign", 1943 | "sublime_varscoper": "VarScoper", 1944 | "sublime_whitespace": "Whitespace Diff Trim", 1945 | "SublimeABC": "ABC Notation", 1946 | "SublimeAizuOnlineJudge": "Aizu Online Judge", 1947 | "SublimeAllAutocomplete": "All Autocomplete", 1948 | "sublimeAlternateVIMNavigation": "Alternate VIM Navigation", 1949 | "SublimeAutoSemiColon": "Auto Semi-Colon", 1950 | "SublimeAutoSoftWrap": "AutoSoftWrap", 1951 | "SublimeBingTranslator": "Bing Translator", 1952 | "SublimeBullet": "Bullet", 1953 | "SublimeChef": "Chef", 1954 | "SublimeChubyNinja": "Chuby Ninja Color Scheme", 1955 | "SublimeClearCase": "ClearCase", 1956 | "SublimeClipboardHistory": "Jimbly's Clipboard History", 1957 | "SublimeClipboardPath": "Clipboard Path", 1958 | "SublimeClojure": "Enhanced Clojure", 1959 | "SublimeCloseOldestFile": "Close Oldest File", 1960 | "SublimeClosureMyJS": "ClosureMyJS", 1961 | "SublimeCMSMadeSimple": "CMS Made Simple Snippets", 1962 | "SublimeCodechef": "Codechef", 1963 | "SublimeCodeSearch": "CodeSearch", 1964 | "SublimeColorSchemeSelector": "ColorSchemeSelector", 1965 | "SublimeCSAutocompletePlus": "CoffeeComplete Plus (Autocompletion)", 1966 | "SublimeCSSTidy": "CSSTidy", 1967 | "SublimeCTagsPHP": "CTags for PHP", 1968 | "SublimeDataConverter": "DataConverter", 1969 | "SublimeEmberNav": "Simple Ember.js Navigator", 1970 | "SublimeERB": "ERB Insert and Toggle Commands", 1971 | "SublimeEventStore": "Event Store Projection Editor", 1972 | "SublimeExpandSelectionToLineBefore": "Expand Selection to Line Before", 1973 | "SublimeFeelingLucky": "FeelingLucky", 1974 | "SublimeFiglet": "Figlet Big ASCII Text", 1975 | "SublimeFileCleanup": "FileCleanup", 1976 | "SublimeFileClose": "FileClose", 1977 | "SublimeFiles": "Sublime Files", 1978 | "SublimeFileSync": "FileSync", 1979 | "SublimeFileTemplates": "FileTemplates", 1980 | "SublimeFixMacPath": "Fix Mac Path", 1981 | "SublimeFunctionNameDisplay": "Function Name Display", 1982 | "SublimeGitGrep": "GitGrep", 1983 | "SublimeGoBuild": "Go Build", 1984 | "SublimeGReader": "Google Reader", 1985 | "SublimeGtags": "GTags", 1986 | "SublimeHideTabs": "Hide Tabs", 1987 | "SublimeHighlight": "Highlight", 1988 | "SublimeHostsEdit": "HostsEdit", 1989 | "SublimeHTMLMustache": "HTML Mustache", 1990 | "SublimeHtmlTidy": "HtmlTidy", 1991 | "SublimeHttpRequester": "Http Requester", 1992 | "SublimeHttpStatusCode": "HttpStatusCode", 1993 | "SublimeJRubyFXML": "JRubyFX", 1994 | "SublimeLaTeXAccents": "LaTeX Accents", 1995 | "SublimeLaTeXWordCount": "LaTeX Word Count", 1996 | "SublimeListenr": "Listenr", 1997 | "SublimeLoremPixel": "LoremPixel", 1998 | "SublimeMagentoIntel": "MagentoIntel", 1999 | "SublimeMagick": "ImageMagick", 2000 | "SublimeMakeExecutable": "MakeExecutable", 2001 | "SublimeMarkdownBuild": "MarkdownBuild", 2002 | "sublimemarkpress": "MarkPress", 2003 | "SublimeMaven": "Maven", 2004 | "SublimeMorse": "Morse", 2005 | "SublimeNavigationHistory": "Navigation History", 2006 | "SublimeNESASM": "NESASM", 2007 | "SublimeNumberManipulation": "Number Manipulation", 2008 | "SublimeObjC2RubyMotion": "ObjC2RubyMotion", 2009 | "SublimeOpenFromPath": "OpenFromPath", 2010 | "SublimeOpenInTotalCommander": "Open in Total Commander", 2011 | "SublimePandoc": "Pandoc (Markdown)", 2012 | "SublimePaneNavigation": "Pane Navigation", 2013 | "sublimepastecolumn": "Paste as Column", 2014 | "SublimePasteColumn": "Paste as Column", 2015 | "SublimePerldoc": "perldoc", 2016 | "SublimePHPBuiltinWebServer": "PHP Built-in WebServer", 2017 | "SublimePHPCompanion": "PHP Companion", 2018 | "SublimePhpTidy": "PhpTidy", 2019 | "SublimePrettyJson": "Pretty JSON", 2020 | "SublimePrint": "Simple Print Function", 2021 | "sublimeprolog": "Prolog", 2022 | "SublimePuppet": "Puppet", 2023 | "sublimePyQtSearch": "PyQt Search", 2024 | "SublimePySide": "PySide", 2025 | "SublimePythonCoverage": "Python Coverage", 2026 | "SublimePythonIDE": "Python IDE", 2027 | "SublimePythonTidy": "PythonTidy", 2028 | "SublimeQuickFileCreator": "Quick File Creator", 2029 | "SublimeRailsNav": "Simple Rails Navigator", 2030 | "SublimeReader": "Text Reader", 2031 | "SublimeReadOnlyBuffer": "Read Only Buffer", 2032 | "SublimeRecentActiveFiles": "RecentActiveFiles", 2033 | "SublimeResizeActiveGroup": "Resize Active Group", 2034 | "SublimeResizeGroupWithKeyboard": "Resize Group with Keyboard", 2035 | "SublimeRestart": "Restart", 2036 | "SublimeRspecBuild": "RspecBuild", 2037 | "SublimeRSpecNavigator": "RSpecNavigator", 2038 | "SublimeRubyCoverage": "Ruby Coverage", 2039 | "SublimeRubyEval": "RubyEval", 2040 | "SublimeRubyMotionBuilder": "RubyMotionBuilder", 2041 | "SublimeRubyToggleString": "RubyToggleString", 2042 | "SublimeScaffolder": "Scaffolder", 2043 | "SublimeSendToPasteBin": "SendToPasteBin", 2044 | "SublimeSimpleTODO": "SimpleTODO", 2045 | "SublimeSnippetMaker": "SnippetMaker", 2046 | "SublimeSourcePawn": "SourcePawn Syntax Highlighting", 2047 | "SublimeSourceTree": "SourceTree", 2048 | "SublimeStatusbarPath": "Statusbar Path", 2049 | "SublimeStylishHaskell": "StylishHaskell", 2050 | "SublimeSuperSelect": "SuperSelect", 2051 | "SublimeSurroundWithSnippet": "Surround Code with Snippets", 2052 | "SublimeSwitchFileDeluxe": "Switch File Deluxe", 2053 | "SublimeSwitchViewInGroup": "Switch View in Group", 2054 | "SublimeSynchroScroll": "Synchronized File Scrolling", 2055 | "sublimesystemverilog": "SystemVerilog", 2056 | "SublimeSystemVerilog": "SystemVerilog", 2057 | "SublimeTabsLimiter": "TabsLimiter", 2058 | "SublimeTabular": "Tabular", 2059 | "SublimeTagWrapper": "TagWrapper", 2060 | "SublimeTask": "Task", 2061 | "sublimetext-2-readonly-writable": "ReadonlyWritable", 2062 | "sublimetext-automatic-backups": "Automatic Backups", 2063 | "sublimetext-cakephp": "CakePHP (Native)", 2064 | "SublimeText-Calendar-Week": "Calendar Week", 2065 | "SublimeText-CasperJS": "CasperJS", 2066 | "SublimeText-Crypto": "Crypto", 2067 | "sublimetext-cuda-cpp": "CUDA C++", 2068 | "sublimetext-date": "Date", 2069 | "sublimetext-fsharp": "F#", 2070 | "sublimetext-grails": "Grails", 2071 | "sublimetext-html-export": "HTML Export", 2072 | "SublimeText-LaTeX-Blindtext": "LaTeX Blindtext", 2073 | "sublimetext-markdown-preview": "Markdown Preview", 2074 | "sublimetext-markdown-slideshow": "Markdown Slideshow", 2075 | "sublimetext-markup-jira-confluence": "Markup Jira Confluence", 2076 | "SublimeText-NodeEval": "NodeEval", 2077 | "SublimeText-Nodejs": "Nodejs", 2078 | "sublimetext-pastepdf": "Paste PDF Text Block", 2079 | "sublimetext-php-haml": "PHP Haml", 2080 | "SublimeText-Preference-Helper": "Preference Helper", 2081 | "sublimetext-print-to-html": "Print to HTML", 2082 | "sublimetext-scalatest": "ScalaTest", 2083 | "sublimetext-sshconfig": "SSH Config", 2084 | "sublimetext-StatusBarTime": "Status Bar Time", 2085 | "SublimeText-Tabright": "Tabright", 2086 | "sublimetext-web-encoders": "Web Encoders", 2087 | "sublimetext-websequencediagrams": "WebSequenceDiagrams", 2088 | "SublimeText2-4GL": "4GL", 2089 | "sublimetext2-apiary-blueprint": "Apiary.io Blueprint", 2090 | "SublimeText2-BackboneBaguette-package": "Backbone Baguette", 2091 | "SublimeText2-BackThere": "Back There", 2092 | "SublimeText2-Behat-Features-Syntax": "Behat Features", 2093 | "SublimeText2-FTPSync": "FTPSync", 2094 | "SublimeText2-LinkOpener": "LinkOpener", 2095 | "SublimeText2-Parallel-Builder-Plugin": "Parallel Builder", 2096 | "SublimeText2-python-open-module-new": "Python Open Module (New)", 2097 | "SublimeText2-python-package-to-clipboard": "Python Path to Clipboard", 2098 | "sublimetext2-todotxt": "Todo.txt Syntax", 2099 | "SublimeText2RailsFileSwitcher": "Rails File Switcher", 2100 | "SublimeText2RailsRelatedFiles": "Rails Related Files", 2101 | "sublimetext_indentxml": "Indent XML", 2102 | "SublimeTextileBuild": "TextileBuild", 2103 | "SublimeTextPreview": "Preview", 2104 | "SublimeTextXdebug": "Xdebug Client", 2105 | "SublimeThinkPHP": "Thinkphp", 2106 | "SublimeTidyHTML": "TidyHTML5", 2107 | "SublimeToggleCssFormat": "Toggle Css Format", 2108 | "SublimeToggleSettings": "ToggleSettings", 2109 | "SublimeToggleSymbol": "Toggle Symbol to String", 2110 | "SublimeToHastebin": "To Hastebin", 2111 | "SublimeTradsim": "Tradsim", 2112 | "SublimeTranslit": "Translit", 2113 | "SUblimeTransporter": "Transporter", 2114 | "SublimeTraverse": "Traverse", 2115 | "SublimeTweetLine": "TweetLine", 2116 | "SublimeTWiki": "TWiki", 2117 | "SublimeVintageNumbers": "Vintage Numbers", 2118 | "SublimeWebFocus": "WebFocus", 2119 | "SublimeWiki": "Wiki", 2120 | "SublimeWordPressCodex": "Search WordPress Codex", 2121 | "SublimeWoWDevelopment": "WoW Development", 2122 | "SublimeXdebug": "Xdebug", 2123 | "SublimeXSLT": "XSLT Snippets", 2124 | "SublimeZenoss": "Zenoss", 2125 | "SublimeZilla": "FileZilla SFTP Import", 2126 | "Summerfruit": "Summerfruit Color Scheme", 2127 | "Sundried": "Sundried Color Scheme", 2128 | "Super-Calculator": "Super Calculator", 2129 | "SuperAnt": "Super Ant", 2130 | "supercollider-package-for-sublime-text": "SuperCollider", 2131 | "superman-color-scheme": "Superman Color Scheme", 2132 | "SwitchScript": "Switch Script", 2133 | "SymfonyTools for SublimeText 2": "SymfonyTools", 2134 | "Syntax-highlighting-for-Sass": "Syntax Highlighting for Sass", 2135 | "Syntax-Matcher": "Syntax Matcher", 2136 | "tau-time-tracker": "Tau Time Tracker", 2137 | "Text-Pastry": "Text Pastry", 2138 | "textmate-freemarker-bundle": "FreeMarker", 2139 | "textmate-solarized": "Solarized Color Scheme (TextMate)", 2140 | "threejs-sublime": "Three.js Autocomplete", 2141 | "tide-sublime": "TideSDK Autocomplete", 2142 | "TidyTabs-Sublime": "TidyTabs", 2143 | "todo-tmbundle": "Todo", 2144 | "toggle-readonly": "Toggle Read-Only", 2145 | "ToggleBool": "Toggle words", 2146 | "TomDoc-Sublime": "TomDoc", 2147 | "Touch-WSGI": "Touch WSGI", 2148 | "tquery-sublime": "tQuery", 2149 | "Tritium.tmbundle": "Tritium", 2150 | "tubaina-afc": "Tubaina (afc)", 2151 | "ublime": "Ublime Color Schemes", 2152 | "Unity3D": "Unity3D", 2153 | "Unity3d-LeanTween-Snippets": "Unity3d LeanTween Snippets", 2154 | "Unity3D-Shader" : "Unity3D Shader Highlighter and Snippets", 2155 | "Unity3DScriptReference": "Unity3D Script Reference Search", 2156 | "Unity3DSnippets": "Unity3D Snippets and Completes", 2157 | "UnityBuild": "Unity3D Build System", 2158 | "UnitySublimeTextSnippets": "Unity C# Snippets", 2159 | "unrealscript-sublime": "UnrealScript", 2160 | "ValaForSublime": "Vala", 2161 | "VcsGutter": "VCS Gutter", 2162 | "velocity-sublime": "Java Velocity", 2163 | "Verilog-Automatic": "Verilog Automatic", 2164 | "vintage-sublime-surround": "Vintage Surround", 2165 | "VintageEscape": "Vintage Escape", 2166 | "WebExPertColorScheme": "WebExPert - ColorScheme", 2167 | "webfont": "WebFont", 2168 | "WooCommerce-Sublime-Text-2-Auto-Completion": "WooCommerce Autocomplete", 2169 | "WordPress-Generate-Salts": "WordPress Generate Salts", 2170 | "wordpress-readme-to-markdown": "WordPress Readme to Markdown", 2171 | "wowtoc-syntax": "World of Warcraft TOC file Syntax", 2172 | "WoWXMLForSublimeText": "World of Warcraft XML file Syntax", 2173 | "xli-templateize": "XLI Template Converter", 2174 | "XQuery-Sublime": "XQuery", 2175 | "xtoy": "X to Y", 2176 | "yate-textmate": "Yate", 2177 | "Youdao-Translate-For-Sublime": "Youdao English-Chinese Translate", 2178 | "YUI-Compressor": "YUI Compressor", 2179 | "ZenTabs": "Zen Tabs", 2180 | "ZF2Helper": "PHP Zend Framework 2 Helper", 2181 | "Zurb-Foundation-Snippets": "Foundation Snippets", 2182 | "Zurb-Foundation-Textmate-Bundle": "Zurb Foundation 4 Snippets" 2183 | }, 2184 | "renamed_packages": { 2185 | "alternative_autocompletion": "Alternative Autocompletion", 2186 | "AndyJS": "AndyJS2", 2187 | "Bourbon & Neat Autocompletions": "Derby - Bourbon & Neat Autocompletions", 2188 | "CakePHP": "CakePHP (tmbundle)", 2189 | "Change List (Last Edit)": "ChangeList", 2190 | "CoffeeScript-Lodash-Snippets-for-Sublime-Text-2": "Lo-Dash Snippets for CoffeeScript", 2191 | "DocBlox": "phpDocumentor", 2192 | "EE Add-On Builder": "ExpressionEngine Add-On Builder", 2193 | "Enhanced R" : "Enhanced-R", 2194 | "Find Function Definiton": "Find Function Definition", 2195 | "Frontend Delight Theme": "Color Scheme - Frontend Delight", 2196 | "Git Gutter": "GitGutter", 2197 | "Goto Golang Document": "GoToDoc", 2198 | "HaXe": "Haxe", 2199 | "IncDecValue": "Inc-Dec-Value", 2200 | "JS Minifier": "JsMinifier", 2201 | "JSDocs": "DocBlockr", 2202 | "Laravel-Blade": "Laravel Blade Highlighter", 2203 | "Load file to REPL": "LoadFileToRepl", 2204 | "Python Package to Clipboard": "Python Path to Clipboard", 2205 | "Quick File Renamer": "QuickFileMove", 2206 | "Quick Rails": "QuickRails", 2207 | "RoyCompile": "Roy", 2208 | "Ruby 1.9 Hash Converter": "Ruby Hash Converter", 2209 | "Ruby 1.9 Hash Reverter": "Ruby Hash Reverter", 2210 | "Six: Future JavaScript Syntax": "Six - Future JavaScript Syntax", 2211 | "Solarized Color Scheme (TextMate)": "Solarized Color Scheme", 2212 | "Strapdown.js Markdown Preview": "Strapdown Markdown Preview", 2213 | "Strapdown.js Preview": "Strapdown.js Markdown Preview", 2214 | "Sublime GDB Plugin For Golang": "GoGdb", 2215 | "SublimeBracketeer": "Bracketeer", 2216 | "sublimemarkpress": "MarkPress", 2217 | "SublimeMoveText": "MoveText", 2218 | "SublimeQuickfind": "Quickfind", 2219 | "SublimeTransposeCharacter": "TransposeCharacter", 2220 | "Theme - Soda Refined": "Theme - Aqua", 2221 | "ThinkPHP Snippets": "Thinkphp", 2222 | "Velocity Snippets + Synthax Highlight": "Java Velocity" 2223 | } 2224 | } 2225 | --------------------------------------------------------------------------------