forked from wbond/package_control_channel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories.json
1699 lines (1699 loc) · 81.5 KB
/
repositories.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": "1.2",
"repositories": [
"https://github.com/SublimeText",
"http://sublime.wbond.net/packages.json",
"http://wuub.net/packages.json",
"https://bitbucket.org/abraly/zap-gremlins",
"https://bitbucket.org/artyom_smirnov/sublimetext2-packages/raw/master/packages.json",
"https://bitbucket.org/asmodai/hexcode",
"https://bitbucket.org/asmodai/shaderlanguages",
"https://bitbucket.org/bgs_public/papyrus",
"https://bitbucket.org/CDuke/sublime-tfs",
"https://bitbucket.org/Clams/pasteselonclick",
"https://bitbucket.org/Clams/sublimepastecolumn",
"https://bitbucket.org/Clams/sublimesystemverilog",
"https://bitbucket.org/cryzed/sweylas-color-theme-generator",
"https://bitbucket.org/DanielSiepmann/typo3-fluid-snippets",
"https://bitbucket.org/danpe/quick-rails",
"https://bitbucket.org/do/smartmovetotheeol",
"https://bitbucket.org/dotCypress/coffeelint",
"https://bitbucket.org/dotCypress/haskellbuddy",
"https://bitbucket.org/hullabaloo/sublime-http-response-headers-snippets",
"https://bitbucket.org/jjones028/p4sublime/raw/tip/packages.json",
"https://bitbucket.org/klorenz/projectspecific",
"https://bitbucket.org/klorenz/wrapcommand",
"https://bitbucket.org/Korcholis/andrew",
"https://bitbucket.org/lewisjosh/buffersbackup",
"https://bitbucket.org/markstahler/insert-nums",
"https://bitbucket.org/nwjlyons/copy-file-name",
"https://bitbucket.org/nwjlyons/google-search",
"https://bitbucket.org/PhillSparks/sublimesourcetree",
"https://bitbucket.org/pjv/setdjangosyntax",
"https://bitbucket.org/rablador/quickref",
"https://bitbucket.org/StephaneBunel/pythonpep8autoformat",
"https://bitbucket.org/thejeshgn/hg4subl",
"https://github.com/315234/MinimalFortran",
"https://github.com/a-sk/livecss",
"https://github.com/a-sk/sublime-build-on-save",
"https://github.com/a-sk/sublime-ipython-integration",
"https://github.com/a-sk/SublimeSurroundWithSnippet",
"https://github.com/a-sk/SublimeTabular",
"https://github.com/a1fred/SublimeGoogle",
"https://github.com/aaronpowell/sublime-jquery-snippets",
"https://github.com/aaronpowell/Sublime-KnockoutJS-Snippets",
"https://github.com/achayan/sublimePyQtSearch",
"https://github.com/adamchainz/SublimeFiglet",
"https://github.com/adamchainz/SublimeHTMLMustache",
"https://github.com/adamchainz/SublimeMoveTabs",
"https://github.com/adamchainz/SublimeSwitchViewInGroup",
"https://github.com/adampresley/sublime-js-minify",
"https://github.com/adampresley/sublime-view-in-browser",
"https://github.com/aery32/sublime-aery32",
"https://github.com/agibsonsw/AndyEdits",
"https://github.com/agibsonsw/AndyJS2",
"https://github.com/agibsonsw/AndyPHP",
"https://github.com/agibsonsw/AndyPython",
"https://github.com/agibsonsw/HTMLAttributes",
"https://github.com/agibsonsw/QuickPrint",
"https://github.com/akira-cn/sublime-gbk",
"https://github.com/akira-cn/sublime-v8",
"https://github.com/akrabat/SublimeFunctionNameDisplay",
"https://github.com/al63/SublimeFiles",
"https://github.com/alek-sys/ChangeTracker",
"https://github.com/alek-sys/sublimetext_indentxml",
"https://github.com/AlexanderBrevig/sublime-Spark",
"https://github.com/AlexanderZaytsev/neat-sass-snippets",
"https://github.com/AlexanderZaytsev/SublimeText2RailsFileSwitcher",
"https://github.com/alexandresalome/sublime-alom",
"https://github.com/alexnj/SublimeOnSaveBuild",
"https://github.com/alexpls/Rails-Latest-Migration",
"https://github.com/alexstaubo/sublime_text_alternative_autocompletion",
"https://github.com/alexstrat/PEGjs.tmbundle",
"https://github.com/alienhard/SublimeAllAutocomplete",
"https://github.com/AllStruck/Sublime-Text-2-Revert-All-Files",
"https://github.com/ALLZ/hex-bin_system",
"https://github.com/ALLZ/hextoASCII",
"https://github.com/alnkpa/sublimeprolog",
"https://github.com/ameyp/CscopeSublime",
"https://github.com/amireh/SwitchScript",
"https://github.com/amokan/ST2-Backbone.Marionette",
"https://github.com/angular-ui/AngularJs.tmbundle",
"https://github.com/Anomareh/PHP-Twig.tmbundle",
"https://github.com/aparajita/Cappuccino-Sublime",
"https://github.com/Apathetic012/JustPaste",
"https://github.com/aphex/SuperAnt",
"https://github.com/arnoldclark/ac-ruby-snippets",
"https://github.com/aroscoe/Hex-to-RGBA",
"https://github.com/artemk/Sublime-Apidock",
"https://github.com/artkorsun/DelphiStyleBookmarks",
"https://github.com/astronaughts/SublimeOpenFromPath",
"https://github.com/astronaughts/SublimePHPBuiltinWebServer",
"https://github.com/astropanic/Compline",
"https://github.com/asux/sublime-capybara-snippets",
"https://github.com/atadams/Hex-to-HSL-Color",
"https://github.com/austinhappel/sublime-csslint",
"https://github.com/axel22/sublime-javap",
"https://github.com/Azd325/sublime-text-caniuse",
"https://github.com/aziz/PlainTasks",
"https://github.com/b-g/processing-sublime",
"https://github.com/b3ni/Sublime-Fabric",
"https://github.com/balazstth/subl-esp",
"https://github.com/bartTC/SubDpaste",
"https://github.com/bbonora/SublimeCMSMadeSimple",
"https://github.com/bcharbonnier/SublimeFileSync",
"https://github.com/beefsack/unrealscript-sublime",
"https://github.com/belike81/Sublime-File-Navigator",
"https://github.com/Benja-gipsy-king/ControlScroll",
"https://github.com/benjamin-smith/sublime-text-silverstripe",
"https://github.com/benmatselby/sublime-phpcs",
"https://github.com/benmatselby/sublime-phpdocumentor",
"https://github.com/benmatselby/sublime-pman",
"https://github.com/Benvie/JavaScriptNext.tmLanguage",
"https://github.com/berfarah/LESS-build-sublime",
"https://github.com/bernatfortet/sublime-frontend-delight",
"https://github.com/bgreenlee/sublime-github",
"https://github.com/biermeester/Pylinter",
"https://github.com/billymoon/LoremIpsum",
"https://github.com/billymoon/Stylus",
"https://github.com/bistory/Sublime-Minifier",
"https://github.com/bit-part/MTML-ST2",
"https://github.com/bit101/STProjectMaker",
"https://github.com/bizoo/MultiTaskBuild",
"https://github.com/bizoo/SortTabs",
"https://github.com/blackjk3/threejs-sublime",
"https://github.com/bmc/ST2SyntaxFromFileName",
"https://github.com/bnu/sublime-xpressengine",
"https://github.com/bobthecow/sublime-sane-snippets",
"https://github.com/borysf/Sublimerge",
"https://github.com/BoundInCode/AutoFileName",
"https://github.com/BoundInCode/Display-Functions",
"https://github.com/BoundInCode/st2-refresh-theme",
"https://github.com/bradleyboy/TidyTabs-Sublime",
"https://github.com/bradsokol/VcsGutter",
"https://github.com/braindamageinc/SublimeHttpRequester",
"https://github.com/brandonhilkert/TomDoc-Sublime",
"https://github.com/briancavalier/textmate-freemarker-bundle",
"https://github.com/BrianGilbert/Sublime-Text-2-Goto-Drupal-API",
"https://github.com/brianriley/sublime-dpaste",
"https://github.com/brynbellomy/Sublime-Aqueducts",
"https://github.com/buymeasoda/soda-theme",
"https://github.com/cabeca/SublimeChef",
"https://github.com/cafarm/aqua-theme",
"https://github.com/cakephp/cakephp-tmbundle",
"https://github.com/carlcalderon/sublime-color-schemes",
"https://github.com/carlo/sublime-underscorejs-snippets",
"https://github.com/catalinc/WebSearch",
"https://github.com/cbumgard/SublimeListenr",
"https://github.com/ccampbell/sublime-smart-match",
"https://github.com/ccreutzig/sublime-MuPAD",
"https://github.com/cgutierrez/JsMinifier",
"https://github.com/chagel/itodo",
"https://github.com/chaosphere2112/TextCommands",
"https://github.com/charlesroper/DobDark-Theme",
"https://github.com/chiappone/Sublime-SBT-Runner",
"https://github.com/chriskempson/base16-textmate",
"https://github.com/chrislongo/Pig",
"https://github.com/chrislongo/QuickThemes",
"https://github.com/Cipscis/Papyrus_Assembly",
"https://github.com/claudiosmweb/wordpress-readme-to-markdown",
"https://github.com/clemos/haxe-sublime2-bundle",
"https://github.com/clintberry/sublime-text-2-ini",
"https://github.com/cluther/SublimeZenoss",
"https://github.com/cockscomb/SublimeMakeExecutable",
"https://github.com/cockscomb/SublimePerldoc",
"https://github.com/codecarson/SublimeSuperSelect",
"https://github.com/compleatang/sublimetext-pastepdf",
"https://github.com/condemil/Gist",
"https://github.com/contradictioned/mips-syntax",
"https://github.com/coretick/SimpleTestingSublime",
"https://github.com/cpojer/grid6-sublime",
"https://github.com/CraigWilliams/BeautifyRuby",
"https://github.com/CraigWilliams/TestChooser",
"https://github.com/crazybyte/SublimeReadOnlyBuffer",
"https://github.com/croach/SublimeHideTabs",
"https://github.com/CrypticTemple/sublime-xml-guesser",
"https://github.com/cthackers/SublimeGoBuild",
"https://github.com/cyphactor/sublime_guard",
"https://github.com/cyrilf7/Sublimipsum",
"https://github.com/d0ugal/RstPreview",
"https://github.com/d3th/sublime-text2-yii-docs",
"https://github.com/daaain/Handlebars",
"https://github.com/dacap/sublime-shrink-whitespaces",
"https://github.com/dafrancis/Sublime-Text--cdnjs",
"https://github.com/damien-biasotto/Help",
"https://github.com/DamnWidget/SublimePySide",
"https://github.com/dangelov/hasher",
"https://github.com/danielfrey/sublime-cucumber-step-finder",
"https://github.com/danielhopkins/sublime-view-movement",
"https://github.com/danielsd/ASPComment",
"https://github.com/danro/LESS-sublime",
"https://github.com/danro/refined-theme",
"https://github.com/DaQuirm/base64-fold",
"https://github.com/daris/sublime-kwrite-color-scheme",
"https://github.com/darkdelphin/Html-compressor",
"https://github.com/darrenderidder/Sublime-JSLint",
"https://github.com/darryllawson/SublimeTWiki",
"https://github.com/dart-lang/dart-sublime-bundle",
"https://github.com/datevid/sublime-text-doctypes",
"https://github.com/davepeck/DirectorySettings",
"https://github.com/davezatch/Media-Query-Snippets",
"https://github.com/davidjrice/sublime-eco",
"https://github.com/davidrios/jade-tmbundle",
"https://github.com/davisagli/SublimePythonCoverage",
"https://github.com/daylerees/colour-schemes",
"https://github.com/dbaines/DotNetNuke-SublimeText-2-Snippets",
"https://github.com/dbousamra/sublime-rst-completion",
"https://github.com/dbp/sublime-rust",
"https://github.com/dedg3/sublime-magento-TemplateCopy",
"https://github.com/demon386/SmartMarkdown",
"https://github.com/dev4dev/blade-snippets",
"https://github.com/devtellect/sublime-jquery-mobile-snippets",
"https://github.com/devtellect/sublime-twitter-bootstrap-snippets",
"https://github.com/dexnode/sublime-yii-snippets",
"https://github.com/dgjnpr/subl.slax.package",
"https://github.com/dhoelzgen/iced-coffee-script-tmbundle",
"https://github.com/diemer/RubyMotionSublimeCompletions",
"https://github.com/diestrin/nodejsLauncher",
"https://github.com/digoangeline/CoreBuilder_SublimeText",
"https://github.com/Dillonb/SublimeSourcePawn",
"https://github.com/Dimillian/Sublime-Hacker-News-Reader",
"https://github.com/DisposaBoy/GoSublime",
"https://github.com/disq/HighlightWhitespaces",
"https://github.com/Dixens/sublime-text-pyrocms-snippets",
"https://github.com/djjcast/mirodark-st2",
"https://github.com/djjcast/sublime-ToggleMinimapOnScroll",
"https://github.com/dotmaster/SublimeExpandSelectionToLineBefore",
"https://github.com/dotty/HackerNews-SublimeTextPlugin",
"https://github.com/doublerebel/filezilla_import",
"https://github.com/dougalsutherland/sublime-stan",
"https://github.com/draffter/FollowFunctionPHP",
"https://github.com/dreadatour/Flake8Lint",
"https://github.com/dreadatour/Pep8Lint",
"https://github.com/dreadatour/RPMSpec",
"https://github.com/drewda/cucumber-sublime2-bundle",
"https://github.com/drhayes/sublime-impactjs",
"https://github.com/drikin/OpenFileList",
"https://github.com/drslump/sublime-boo",
"https://github.com/duereg/sublime-jsvalidate",
"https://github.com/duydao/Text-Pastry",
"https://github.com/dylan-lang/dylan.tmbundle",
"https://github.com/dz0ny/LiveReload-sublimetext2",
"https://github.com/dzhibas/SublimePrettyJson",
"https://github.com/EastPoint/Sublime-AngularJS-Coffee-Completions",
"https://github.com/eBookArchitects/Incrementor",
"https://github.com/eddorre/SublimeERB",
"https://github.com/edgar/RubyCheckOnSave",
"https://github.com/edubkendo/sublime-coffeescript-function-finder",
"https://github.com/edubkendo/SublimeJRubyFXML",
"https://github.com/ehamiter/ST2-GitHubinator",
"https://github.com/ehuss/Sublime-Column-Select",
"https://github.com/ehuss/Sublime-Wrap-Plus",
"https://github.com/eibbors/Bubububububad",
"https://github.com/eladyarkoni/MySignaturePlugin",
"https://github.com/EleazarCrusader/nexus-theme",
"https://github.com/electricgraffitti/sublime-theme-Cube2",
"https://github.com/eliquious/Python-Auto-Complete",
"https://github.com/eliquious/Red-Planet-Theme",
"https://github.com/elomarns/auto-encoding-for-ruby",
"https://github.com/eltimn/sublime-lift",
"https://github.com/email2vimalraj/DashedComments",
"https://github.com/eonlepapillon/PathToFile",
"https://github.com/epitron/Julia-sublime",
"https://github.com/ericclemmons/sublime-typescript",
"https://github.com/erichard/SublimeCTagsPHP",
"https://github.com/ericmartel/Sublime-Text-2-CSV-Plugin",
"https://github.com/ericmartel/Sublime-Text-2-Perforce-Plugin",
"https://github.com/ericmartel/Sublime-Text-2-Search-Anywhere-Plugin",
"https://github.com/ericmartel/Sublime-Text-2-Stackoverflow-Plugin",
"https://github.com/erinata/BuildParts",
"https://github.com/erinata/SublimeBullet",
"https://github.com/erinata/SublimeMarkdownBuild",
"https://github.com/erinata/SublimeRspecBuild",
"https://github.com/erinata/SublimeTradsim",
"https://github.com/Etsur/EE-ST2",
"https://github.com/euler0/sublime-glsl",
"https://github.com/Eun/CustomTasks",
"https://github.com/fabiocorneti/SublimeTextGitX",
"https://github.com/fabiokr/sublime-related-files",
"https://github.com/facelessuser/BracketHighlighter",
"https://github.com/facelessuser/ExportHtml",
"https://github.com/facelessuser/FavoriteFiles",
"https://github.com/facelessuser/FuzzyFileNav",
"https://github.com/facelessuser/HexViewer",
"https://github.com/facelessuser/PlistJsonConverter",
"https://github.com/facelessuser/RegReplace",
"https://github.com/facelessuser/ScopeHunter",
"https://github.com/fanzheng/Sublime.Markdown2Clipboard",
"https://github.com/farzher/Sublime-Text-Themes",
"https://github.com/fbird/Sublime-Pomodoro",
"https://github.com/fbzhong/sublime-closure-linter",
"https://github.com/fbzhong/sublime-jslint",
"https://github.com/feugenix/BEMHTMLSublime",
"https://github.com/ffesseler/sublimetext-websequencediagrams",
"https://github.com/fitnr/SublimeCSSTidy",
"https://github.com/fitnr/SublimeDataConverter",
"https://github.com/fitzagard/li3_sublime",
"https://github.com/fjl/Sublime-Missing-Palette-Commands",
"https://github.com/FlavourSys/Perv-ColorScheme",
"https://github.com/fmaj7/Mason",
"https://github.com/follesoe/sublime-racket",
"https://github.com/forty-two/NightCycle",
"https://github.com/Foxboron/ClojureDoc-Search",
"https://github.com/Foxboron/SublimeClojure",
"https://github.com/FPtje/Sublime-GLua-Highlight",
"https://github.com/francodacosta/composer-sublime",
"https://github.com/frankban/UbuntuPaste",
"https://github.com/fraoustin/Sublime2pdf",
"https://github.com/fredpointzero/UnityBuild",
"https://github.com/friskfly/Youdao-Translate-For-Sublime",
"https://github.com/frou/CFeather",
"https://github.com/frou/Sundried",
"https://github.com/frozenice-/RenameTab",
"https://github.com/fukayatsu/SublimeTweetLine",
"https://github.com/FunkMonkey/SublimeResizeActiveGroup",
"https://github.com/fushnisoft/SublimeClarion",
"https://github.com/garyc40/Vintage-Origami",
"https://github.com/geoffroymontel/supercollider-package-for-sublime-text",
"https://github.com/GerjanOnline/SublimeFileCleanup",
"https://github.com/GianlucaGuarini/SublimeText2-Parallel-Builder-Plugin",
"https://github.com/gillibrand/expand-selection-to-function-js",
"https://github.com/gja/sublime-rmate",
"https://github.com/gja/sublime-text-2-jasmine",
"https://github.com/glyph/E-Max",
"https://github.com/gordio/ToggleBool",
"https://github.com/gornostal/Modific",
"https://github.com/gorte/ST2-Whitespaces",
"https://github.com/graarh/sublime-AutoPHPDollar",
"https://github.com/Grafikart/Open-Browser-SublimeText2-Plugin",
"https://github.com/groenewege/mdTodo",
"https://github.com/grundprinzip/sublemacspro",
"https://github.com/grundprinzip/sublime-dblp",
"https://github.com/guillaumebort/play2-sublimetext2",
"https://github.com/gumuz/currentscope",
"https://github.com/hachesilva/Comment-Snippets",
"https://github.com/hairyhum/SublimeStylishHaskell",
"https://github.com/haraken3/SublimeRubyMotionBuilder",
"https://github.com/harrism/sublimetext-cuda-cpp",
"https://github.com/hayaku/hayaku",
"https://github.com/hdemirchian/CSSFormat",
"https://github.com/heelhook/mongomapper-sublime-text2-snippets",
"https://github.com/henrikpersson/rsub",
"https://github.com/hippasus/SublimeMorse",
"https://github.com/hoest/sublimetext-fsharp",
"https://github.com/hoest/SublimeXSLT",
"https://github.com/iafan/SublimeTextPreview",
"https://github.com/iamjessu/sublime-SplitScreen-Resizer",
"https://github.com/icylace/CursorRuler",
"https://github.com/idosela/sublime_new_from_selection",
"https://github.com/ignacysokolowski/SublimeTagWrapper",
"https://github.com/ignacysokolowski/SublimeVintageNumbers",
"https://github.com/iltempo/sublime-text-2-hash-syntax",
"https://github.com/ilyakam/ParentalControl",
"https://github.com/imagentleman/ublime",
"https://github.com/individuo7/Hogan-Build",
"https://github.com/ingshtrom/BlockCursorEverywhere",
"https://github.com/integrum/SublimeRubyCoverage",
"https://github.com/irohiroki/RubyBlockConverter",
"https://github.com/itsgg/Flex-Sublimetext",
"https://github.com/iuliux/SublimeText2-BackThere",
"https://github.com/ivershuo/sublime-aweibo",
"https://github.com/ivershuo/sublime-sublimeweibo",
"https://github.com/jackfranklin/ST2-MDN-Search",
"https://github.com/jamiesun/SublimeEvernote",
"https://github.com/jamiesun/SublimeTalkincode",
"https://github.com/jampow/velocity-sublime",
"https://github.com/jarhart/SublimeSBT",
"https://github.com/jaumefontal/SASS-Build-SublimeText2",
"https://github.com/jawb/Matrixify",
"https://github.com/jbrooksuk/SublimeWebColors",
"https://github.com/jcartledge/sublime-surround",
"https://github.com/jcartledge/vintage-sublime-surround",
"https://github.com/jclement/SublimePandoc",
"https://github.com/jdc0589/CaseConversion",
"https://github.com/jdc0589/JsFormat",
"https://github.com/jden/AMDtools",
"https://github.com/jden/JsBDD",
"https://github.com/jdiehl/dark-pastel",
"https://github.com/jedy/SublimeReader",
"https://github.com/jf8073/sublime-snake",
"https://github.com/jfairbank/Sublime-Text-2-OpenEdge-ABL",
"https://github.com/jfromaniello/Grandson-of-Obsidian",
"https://github.com/jfromaniello/sublime-html-to-jade",
"https://github.com/jfromaniello/sublime-mocha-snippets",
"https://github.com/jfromaniello/sublime-node-require",
"https://github.com/Jimbly/SublimeClipboardHistory",
"https://github.com/jimhawkridge/SublimeABC",
"https://github.com/jims/sublime-sjson",
"https://github.com/jisaacks/GitGutter",
"https://github.com/jlegewie/SublimePeek",
"https://github.com/jlegewie/SublimePeek-R-help",
"https://github.com/jleonard/Async-Snippets",
"https://github.com/jleonard/sublime-text-2-front-end",
"https://github.com/jlong64/sublime_valign",
"https://github.com/jmm/Sublime-Text-Block-Nav/tree/package-control",
"https://github.com/jmm/Sublime-Text-Cycle-Setting/tree/package-control",
"https://github.com/jnordberg/sublime-colorpick",
"https://github.com/jocelynmallon/sublime-text-2-marked",
"https://github.com/jocelynmallon/sublime-text-2-sourcetree",
"https://github.com/joelpt/sublimetext-automatic-backups",
"https://github.com/joelpt/sublimetext-print-to-html",
"https://github.com/JohnNilsson/awk-sublime",
"https://github.com/jonasdp/Snipplr",
"https://github.com/jonbons/Sublime-SQF-Language",
"https://github.com/joneshf/RoyCompile",
"https://github.com/jonlabelle/Trimmer",
"https://github.com/jonny64/ludik",
"https://github.com/jonschlinkert/pre-sublime",
"https://github.com/josegonzalez/sublimetext-cakephp",
"https://github.com/joseitinerarium/ST2-TiSearch",
"https://github.com/joshnh/CSS-Snippets",
"https://github.com/joshnh/HTML-Snippets",
"https://github.com/jotson/SublimeMagentoIntel",
"https://github.com/jprichardson/sublime-js-snippets",
"https://github.com/jsliang/sublime-pelican",
"https://github.com/jtallant/Genesis",
"https://github.com/jtdeng/GoToDoc",
"https://github.com/jturcotte/SublimeChubyNinja",
"https://github.com/jturcotte/SublimeClipboardPath",
"https://github.com/jturcotte/SublimeCloseOldestFile",
"https://github.com/jturcotte/SublimeSwitchFileDeluxe",
"https://github.com/jugyo/SublimeColorSchemeSelector",
"https://github.com/jugyo/SublimeHttpStatusCode",
"https://github.com/jugyo/SublimeRecentActiveFiles",
"https://github.com/jugyo/SublimeRSpecNavigator",
"https://github.com/jugyo/SublimeRubyEval",
"https://github.com/jugyo/SublimeRubyToggleString",
"https://github.com/jugyo/SublimeTraverse",
"https://github.com/juhasz/drupal_sublime-snippets",
"https://github.com/JulianEberius/SublimeRope",
"https://github.com/julianxhokaxhiu/sublime-projecttreetemplater",
"https://github.com/justinfx/MayaSublime",
"https://github.com/justinmahar/SublimeCSAutocompletePlus",
"https://github.com/justnorris/Sublime-Susy",
"https://github.com/k0sukey/ST2-TitaniumDoc",
"https://github.com/kahi/sublime-django-click",
"https://github.com/karthikram/Rtools",
"https://github.com/kazshu/rspec-snippets",
"https://github.com/kek/sublime-expand-selection-to-quotes",
"https://github.com/KELiON/RailsMigrationsList",
"https://github.com/kemayo/sublime-text-2-clipboard-history",
"https://github.com/kemayo/sublime-text-2-git",
"https://github.com/kemayo/sublime-text-2-goto-documentation",
"https://github.com/Kentzo/SortLinesByColumn",
"https://github.com/Kentzo/SublimeMagick",
"https://github.com/keqh/sublime-tmux-syntax-highlight",
"https://github.com/khiltd/Abacus",
"https://github.com/Kindari/SublimeXdebug",
"https://github.com/kizza/CSS-Less-ish",
"https://github.com/klaascuvelier/ST2-CommandOnSave",
"https://github.com/klangfarbe/sublime-maperitive",
"https://github.com/klaussilveira/SublimeNESASM",
"https://github.com/kloon/WooCommerce-Sublime-Text-2-Auto-Completion",
"https://github.com/knagy/sublimetext2-todotxt",
"https://github.com/koken/koken-sublime",
"https://github.com/koko1000ban/SublimeGtags",
"https://github.com/kostajh/sublime-taskwarrior",
"https://github.com/kpym/SublimeLaTeXAccents",
"https://github.com/Kristories/Sublime-Mongo-PHP",
"https://github.com/krockode/sublime-cucumber-completion",
"https://github.com/kudanai/sublime-chordpro",
"https://github.com/kugland/Sublime-BetaCode",
"https://github.com/kuroir/SCSS.tmbundle/tree/SublimeText2",
"https://github.com/kutu/PythonAnywhereEditor",
"https://github.com/kutu/RandomMessage",
"https://github.com/kvs/ST2EmacsModelines",
"https://github.com/kvs/ST2Nginx",
"https://github.com/kvs/ST2Slate",
"https://github.com/kwattro/sublime-behat-snippets",
"https://github.com/Ky6uk/SublimeDancer",
"https://github.com/laravel/sublime-snippets",
"https://github.com/larlequin/PandocAcademic",
"https://github.com/laughedelic/LoadFileToRepl",
"https://github.com/lazyguru/GoToClass",
"https://github.com/leon/YUI-Compressor",
"https://github.com/leonardoce/nimrod-sublime",
"https://github.com/leonardowolter/tubaina-afc",
"https://github.com/leonid-shevtsov/ClickableUrls_SublimeText2",
"https://github.com/leonid-shevtsov/SearchInProject_SublimeText2",
"https://github.com/LewisW/SublimeAutoSemiColon",
"https://github.com/lfont/Sublime-Text-2-GoogleTranslate-Plugin",
"https://github.com/liamr/Zurb-Foundation-Textmate-Bundle",
"https://github.com/lifted-studios/AutoCopyright",
"https://github.com/lingo/sublime-fscompletion",
"https://github.com/lioshi/lioshiScheme",
"https://github.com/lkraider/sublimetext2-apiary-blueprint",
"https://github.com/lmajano/cbox-coldbox-sublime",
"https://github.com/lowliet/sublimetext-StatusBarTime",
"https://github.com/lunixbochs/sublimelint",
"https://github.com/lunixbochs/SublimeXiki",
"https://github.com/luqman/SublimeText2RailsRelatedFiles",
"https://github.com/lvkun/eval_sel",
"https://github.com/madeingnecca/sublime-fillerati",
"https://github.com/madeingnecca/sublime-slug",
"https://github.com/malexer/SublimeTranslit",
"https://github.com/maltize/sublime-text-2-moo",
"https://github.com/maltize/sublime-text-2-ruby-tests",
"https://github.com/mangini/chrome-apis-sublime/tree/published",
"https://github.com/marconi/mako-tmbundle",
"https://github.com/markandey/codefoo",
"https://github.com/martinsam/sublime-friendpaste",
"https://github.com/martinsam/sublime-unittest",
"https://github.com/maslbl4/sublime-xaml",
"https://github.com/mastahyeti/URLEncode",
"https://github.com/MathiasPaumgarten/SmartDuplicate-Sublime",
"https://github.com/matiaspub/BitrixHelp",
"https://github.com/matiaspub/WebExPertColorScheme",
"https://github.com/matiaspub/WheelChanger",
"https://github.com/mattbanks/dotfiles-syntax-highlighting-st2",
"https://github.com/matthewrobb/Six.tmLanguage",
"https://github.com/matthewrobertson/ERB-Sublime-Snippets",
"https://github.com/matthiasg/sublime-mocha-runner",
"https://github.com/mattstevens/sublime-titlecase",
"https://github.com/MattTuttle/sublime-ti-build",
"https://github.com/mborgerson/Pad",
"https://github.com/mburrows/RecenterTopBottom",
"https://github.com/mctep/yate-textmate",
"https://github.com/Medalink/Laravel-Blade",
"https://github.com/mediaupstream/SublimeText-Crypto",
"https://github.com/mediaupstream/SublimeText-NodeEval",
"https://github.com/ment4list/SublimeZilla",
"https://github.com/mhau/GeneratePassword",
"https://github.com/Michal-Mikolas/Nette-package-for-Sublime-Text-2",
"https://github.com/michelmcbride/UnitySublimeTextSnippets",
"https://github.com/michfield/StrapdownPreview",
"https://github.com/mikefowler/simple-clone",
"https://github.com/mikepfirrmann/openfolder",
"https://github.com/Mimino666/SublimeText2-python-open-module-new",
"https://github.com/Mimino666/SublimeText2-python-package-to-clipboard",
"https://github.com/mimopo/ZenGarden",
"https://github.com/minism/SublimeBufmod",
"https://github.com/minism/SublimeLove",
"https://github.com/miripiruni/CSScomb-for-Sublime",
"https://github.com/misalazovic/PHP-MySQLi-connection",
"https://github.com/misfo/Shell-Turtlestein",
"https://github.com/mishu91/Sublime-Text-2-Table-Cleaner",
"https://github.com/mishu91/sublime-text-theme-night",
"https://github.com/mitsuhiko/jinja2-tmbundle",
"https://github.com/mjio/boron.tmtheme",
"https://github.com/mjs7231/sublime-pkstheme",
"https://github.com/mkraft/git-status-files",
"https://github.com/MLstate/OpaSublimeText",
"https://github.com/mmims/sublime-text-2-ruby-markers",
"https://github.com/mmoriar1/AMPScript",
"https://github.com/mneuhaus/SublimeFileTemplates",
"https://github.com/Monnoroch/ColorHighlighter",
"https://github.com/monospaced/sublime-twee",
"https://github.com/morganestes/sublime-recess",
"https://github.com/mpmont/ci-snippets",
"https://github.com/mradam/moscowml",
"https://github.com/mrcharles/sublove2d",
"https://github.com/mreq/mreq-theme",
"https://github.com/mrmartineau/HTML5",
"https://github.com/mrmartineau/Placeholders",
"https://github.com/mrmartineau/SASS-Snippets",
"https://github.com/mschoebel/cocosyntax",
"https://github.com/musashimm/Sublime-Text-2-Mina",
"https://github.com/mvoidex/UnicodeMath",
"https://github.com/mxunit/sublime-text-2-mxunit",
"https://github.com/n1k0/SublimeHighlight",
"https://github.com/n1k0/SublimeText-CasperJS",
"https://github.com/NaN1488/sublime-gem-browser/tree/stable",
"https://github.com/Narven/sublime-artisan",
"https://github.com/natew/ExpandSelectionByParagraph",
"https://github.com/nathos/sass-textmate-bundle/tree/sublime",
"https://github.com/Ndushi/RandomHEXColor",
"https://github.com/netatoo/phoenix-theme",
"https://github.com/nh2/sublime-text-move-tabs",
"https://github.com/nibblebot/sublime-js2coffee",
"https://github.com/Nijikokun/Prevu",
"https://github.com/Nijikokun/todo-tmbundle",
"https://github.com/nilium/st2-nil-theme",
"https://github.com/Nivl/sublime-hamlpy",
"https://github.com/nlloyd/SublimeMaven",
"https://github.com/nlloyd/SubliminalCollaborator",
"https://github.com/noahcoad/open-url",
"https://github.com/noct/SublimeSL",
"https://github.com/noklesta/SublimeEmberNav",
"https://github.com/noklesta/SublimeQuickFileCreator",
"https://github.com/noklesta/SublimeRailsNav",
"https://github.com/nomnel/Sublime-Gauche-Syntax",
"https://github.com/NorthIsUp/Sublimation",
"https://github.com/NoxArt/SublimeText2-FTPSync",
"https://github.com/NoxArt/SublimeText2-LinkOpener",
"https://github.com/npostulart/SCSS-Snippets",
"https://github.com/nucleartux/sublime-symfony",
"https://github.com/oct8cat/sublime-phpdox",
"https://github.com/odyssomay/sublime-lispindent",
"https://github.com/ogom/sublimetext-markdown-slideshow",
"https://github.com/oleander/sublime-split-navigation",
"https://github.com/omissis/sublime-behat-syntax",
"https://github.com/onrel/Sublime-Text-2-Paste-As-Link-Plugin",
"https://github.com/osoco/sublimetext-grails",
"https://github.com/ostinelli/SublimErl/tree/package",
"https://github.com/outer-edge/SublimeLoremPixel",
"https://github.com/P233/Emmet-Css-Snippets-for-Sublime-Text-2",
"https://github.com/P233/Jade-Snippets-for-Sublime-Text-2",
"https://github.com/Paaskehare/pastebin-sublime-plugin",
"https://github.com/paccator/GotoRecent",
"https://github.com/Pafsis/hookblime",
"https://github.com/palaniraja/iForce",
"https://github.com/PaNaVTEC/Objc-Strings-Syntax-Language",
"https://github.com/patgannon/sublimetext-scalatest",
"https://github.com/patricktalmadge/Bootstrapper_snippets",
"https://github.com/paulollivier/sublimetext-date",
"https://github.com/pavelpachkovskij/sublime-html-to-haml",
"https://github.com/pdaether/Sublime-SymfonyCommander",
"https://github.com/pensive612/sublime-chai-full-completions",
"https://github.com/Pephers/Super-Calculator",
"https://github.com/phildopus/EclipseJavaFormatter",
"https://github.com/phildopus/sublime-goto-open-file",
"https://github.com/philipguin/dfml-sublime-package",
"https://github.com/PhilippSchaffrath/Anypreter",
"https://github.com/phillipkoebbe/DetectSyntax",
"https://github.com/phillipkoebbe/NewFileWithSave",
"https://github.com/phuibonhoa/handcrafted-haml-textmate-bundle",
"https://github.com/phyllisstein/HipsterIpsum",
"https://github.com/phyllisstein/Markboard",
"https://github.com/phyllisstein/Pandown",
"https://github.com/phyllisstein/Wick",
"https://github.com/phyllisstein/Wind",
"https://github.com/pipe-devnull/ZF2Helper",
"https://github.com/pjkottke/FLAC-Syntax",
"https://github.com/PogiNate/SublimeWiki",
"https://github.com/PogiNate/XQuery-Sublime",
"https://github.com/poritsky/fountain-sublime-text",
"https://github.com/possan/sublime_unicode_nbsp",
"https://github.com/pravka/SublimeSynchroScroll",
"https://github.com/prongs/SublimeCodechef",
"https://github.com/prongs/SublimeNumberManipulation",
"https://github.com/psyrendust/CSScomb-Alpha-Sort-for-Sublime",
"https://github.com/Pugsworth/SearchGmodWiki",
"https://github.com/PureCM/Sublime-Text-2-PureCM-Plugin",
"https://github.com/purplefish32/sublime-text-2-twig",
"https://github.com/purplefish32/sublime-text-2-wordpress",
"https://github.com/pwhisenhunt/Sublime-Text-2-Lazy-Backbone.js-Package",
"https://github.com/pyzhangxiang/sublimetext-2-readonly-writable",
"https://github.com/qfel/RunCommand",
"https://github.com/qfel/sublime-pytags",
"https://github.com/quarnster/ADBView",
"https://github.com/quarnster/PlatformSettings",
"https://github.com/quarnster/SublimeGDB",
"https://github.com/qur2/HighlightDuplicates",
"https://github.com/R3AL/SublimeTransporter",
"https://github.com/radiosilence/dogs-colour-scheme",
"https://github.com/RadLikeWhoa/JS-Snippets",
"https://github.com/raik/st2-pseudo-osx-theme",
"https://github.com/randy3k/AlignTab",
"https://github.com/randy3k/AutoWrap",
"https://github.com/randy3k/ChangeList",
"https://github.com/raulfraile/sublime-symfony2",
"https://github.com/raydric/raydric-color-scheme",
"https://github.com/RazerM/APDL-Syntax",
"https://github.com/rcaldwel/Django-Tools",
"https://github.com/rcaldwel/DNS",
"https://github.com/rcastagno/sublime_varscoper",
"https://github.com/rchl/UnindentPreprocessor",
"https://github.com/rcknight/SublimeEventStore",
"https://github.com/redata425/derby",
"https://github.com/reflog/toggle-readonly",
"https://github.com/reinteractive-open/Syntax-Matcher",
"https://github.com/relikd/CUE-Sheet_sublime",
"https://github.com/remcoder/SublimeHandcraft",
"https://github.com/revathskumar/sublime-yardoc",
"https://github.com/revolunet/sublimetext-html-export",
"https://github.com/revolunet/sublimetext-markdown-preview",
"https://github.com/revolunet/sublimetext-web-encoders",
"https://github.com/rioderaca/LaTeX-Track-Changes",
"https://github.com/rjcoelho/sublime-clearcase",
"https://github.com/rmaksim/Sublime-Text-2-Goto-CSS-Declaration",
"https://github.com/rmaksim/Sublime-Text-2-Inc-Dec-Value",
"https://github.com/roadhump/GoldenRatio",
"https://github.com/roadhump/ReadmePlease",
"https://github.com/robballou/drupal-sublimetext",
"https://github.com/robbl/sublime-switch",
"https://github.com/robcowie/SublimePaster",
"https://github.com/Robot-Will/Stino",
"https://github.com/rockerest/Signatori",
"https://github.com/rodrigoflores/elixir-sublimetext",
"https://github.com/rorydriscoll/LuaSublime",
"https://github.com/roverwire/codeigniter-utilities",
"https://github.com/royvandewater/Sublime2-TreeTop",
"https://github.com/rozboris/Sublime-Tweet",
"https://github.com/rrerolle/sublime-scheme-cycler",
"https://github.com/rspec/rspec-tmbundle",
"https://github.com/russCloak/SublimePuppet",
"https://github.com/s3anno/SublimeToHastebin",
"https://github.com/sahibalejandro/inline-calculator",
"https://github.com/sahibalejandro/quark-php-sublime",
"https://github.com/saippuakauppias/sublime-text-2-Django-DocsSearch",
"https://github.com/samholmes/EJS.tmLanguage",
"https://github.com/samizdatco/sublime-text-shebang",
"https://github.com/SamPeng87/sublime-last-edit",
"https://github.com/samsonw/SublimeTask",
"https://github.com/schnittchen/sublime-helios",
"https://github.com/scttcper/Scriptogram",
"https://github.com/seancoyne/farcry-sublimetext",
"https://github.com/seanja/ampscript-st2",
"https://github.com/seanjames777/SML-Language-Definition",
"https://github.com/seanliang/HighlightWords",
"https://github.com/sellerengine/sublime_context_build",
"https://github.com/sepisoad/ValaForSublime",
"https://github.com/sergeche/emmet-sublime",
"https://github.com/setumiami/sublime-typescript-compiler",
"https://github.com/Shagabutdinov/sublime-anyword-completion",
"https://github.com/Shagabutdinov/sublime-open-path",
"https://github.com/Shammah/boo-sublime",
"https://github.com/sheldon/sublime-text-2-folder-list",
"https://github.com/shell/sublime-tomdoc",
"https://github.com/shellderp/sublime-robot-plugin",
"https://github.com/shibainurou/SublimeAizuOnlineJudge",
"https://github.com/Shirk/Sublime-FASM-x86",
"https://github.com/Siddley/Creole",
"https://github.com/Siddley/Enhanced.HTML.CFML",
"https://github.com/sijk/sublime-licence-snippets",
"https://github.com/silentworks/modx-sublimetext-2",
"https://github.com/sindresorhus/editorconfig-sublime",
"https://github.com/SirReal/eZ-Publish-Syntax",
"https://github.com/sivakumar-kailasam/jprop-cleaner",
"https://github.com/sivakumar-kailasam/Repeat-Macro",
"https://github.com/skarcha/SublimeText2-4GL",
"https://github.com/skoch/Sublime-ActionScript-3",
"https://github.com/skt84/Schemr",
"https://github.com/skt84/Themr",
"https://github.com/skuroda/FindKeyConflicts",
"https://github.com/skuroda/PersistentRegexHighlight",
"https://github.com/skuroda/Sublime-AdvancedNewFile",
"https://github.com/slim-template/ruby-slim.tmbundle",
"https://github.com/sloria/sublime-selenium-snippets",
"https://github.com/Smerty/sublime-named",
"https://github.com/sntran/sublime-dustjs",
"https://github.com/sobstel/SyncedSideBar",
"https://github.com/sokolovstas/SublimeWebInspector",
"https://github.com/spacenick/SublimeText2-BackboneBaguette-package",
"https://github.com/spadgos/sublime-AsAbove",
"https://github.com/spadgos/sublime-csspecific",
"https://github.com/spadgos/sublime-DefaultFileType",
"https://github.com/spadgos/sublime-jsdocs",
"https://github.com/spadgos/sublime-OpenRecentFiles",
"https://github.com/spadgos/sublime-require-helper",
"https://github.com/spadgos/sublime-SplitScreen",
"https://github.com/spadgos/sublime-ToggleQuotes",
"https://github.com/speg/SublimeGReader",
"https://github.com/speilberg0/ci-codeintel-helper",
"https://github.com/speilberg0/SublimeToggleCssFormat",
"https://github.com/splatzgud/VGR-Assistant",
"https://github.com/sporto/rails_go_to_spec",
"https://github.com/squ1b3r/Djaneiro",
"https://github.com/srilumpa/SyntaxChecker",
"https://github.com/standfast/Translate",
"https://github.com/stephendavis89/sublime-liquid",
"https://github.com/stevenjs/M68k-Assembly",
"https://github.com/stuartherbert/sublime-phix-color-scheme",
"https://github.com/stuartherbert/sublime-phpsnippets",
"https://github.com/stuartherbert/sublime-phpunit",
"https://github.com/Stubbs/sublime-minkextension",
"https://github.com/Stubbs/sublime-puppet-syntax",
"https://github.com/Stubbs/sublime-vagrant",
"https://github.com/Stuk/sublime-edit-history",
"https://github.com/stylishmedia/SublimeText-Tabright",
"https://github.com/sublimator/ZenCoding",
"https://github.com/SublimeColors/Solarized",
"https://github.com/SublimeHaskell/SublimeHaskell",
"https://github.com/sublimescala/sublime-ensime",
"https://github.com/SubZane/Sublime-Dummy-Image-Generator",
"https://github.com/SubZane/Sublime-Placehold.it",
"https://github.com/SubZane/Sublime-Snipt-Snippet-Fetcher",
"https://github.com/Suor/CommentsAwareEnter",
"https://github.com/superguigui/xtoy",
"https://github.com/surjikal/sublime-coffee-compile",
"https://github.com/surjikal/sublime-howdoi",
"https://github.com/svenax/SublimePrint",
"https://github.com/swdunlop/antiki",
"https://github.com/sys1yagi/SublimeBingTranslator",
"https://github.com/tadast/sublime-rails-snippets",
"https://github.com/Taecho/Sublime-Snipt",
"https://github.com/tanc/st2-drupal-autocomplete",
"https://github.com/tanepiper/sublime-todomanager",
"https://github.com/tanepiper/SublimeText-Nodejs",
"https://github.com/tdebarochez/sublime-mailto",
"https://github.com/tdm00/sublime-theme-railscasts",
"https://github.com/technocoreai/SublimeExternalCommand",
"https://github.com/tednaleid/sublime-EasyMotion",
"https://github.com/temochka/sublime-text-2-beanstalk",
"https://github.com/temochka/sublime-text-2-github-tools",
"https://github.com/testdouble/sublime-test-double",
"https://github.com/thanpolas/sublime-google-closure-snippets",
"https://github.com/TheDutchCoder/ColorConvert",
"https://github.com/TheOnlyRew/sublime-horizontal-scroll",
"https://github.com/theymaybecoders/sublime-tomorrow-theme",
"https://github.com/thgie/Summerfruit",
"https://github.com/thierrylemoulec/Sublime-Csslisible",
"https://github.com/ThisIsJohnBrown/Sublime-Hhhhold",
"https://github.com/TikiTDO/AutoSlim",
"https://github.com/tikot/sublime-code2docs",
"https://github.com/timdouglas/sublime-find-function-definition",
"https://github.com/timdouglas/sublime-less2css",
"https://github.com/timjrobinson/SublimeNavigationHistory",
"https://github.com/tinacious/fakeimg.sublime-snippet",
"https://github.com/TitanKing/Express.tmTheme",
"https://github.com/titoBouzout/SideBarEnhancements",
"https://github.com/tkowalewski/phpunit-sublime-completions",
"https://github.com/tm-minty/sublime-text-2-image2base64",
"https://github.com/tnhu/SimpleSync",
"https://github.com/TobiasRaeder/SublimeClosure",
"https://github.com/toin0u/Sublime-atoum",
"https://github.com/tomalec/Sublime-Text-2-Vlt-Plugin",
"https://github.com/tomasztunik/Sublime-Text-2-Backbone.js-package",
"https://github.com/tomav/SublimeText2-Behat-Features-Syntax",
"https://github.com/TooooBug/CompactExpandCss",
"https://github.com/toru-hamaguchi/sublime-fish-shell",
"https://github.com/tosher/Mediawiker",
"https://github.com/trentrichardson/Clientside",
"https://github.com/trishume/Sublime-Rosetta-Get",
"https://github.com/trustmaster/sublime-cotonti",
"https://github.com/tstirrat/Idoc-sublime",
"https://github.com/TurtlePie/Sublime-ECT",
"https://github.com/tvooo/sublime-grunt",
"https://github.com/tylerclendenin/Sublime-PowerPaste",
"https://github.com/uipoet/sublime-jshint",
"https://github.com/UnicornForest/Unity3D",
"https://github.com/UnicornForest/Unity3DScriptReference",
"https://github.com/UnicornForest/Unity3DSnippets",
"https://github.com/ukblewis/sublime-pxtoem/tree/master/.config/sublime-text-2/Packages/pxtoem",
"https://github.com/uonick/dimmed",
"https://github.com/uonick/fatfree-snippets",
"https://github.com/vaanwd/sublime_drush",
"https://github.com/Vandesdelca32/wowtoc-syntax",
"https://github.com/vbali/sublime-snakecase",
"https://github.com/vhyza/exec-in-window",
"https://github.com/vi4m/sublime_python_imports",
"https://github.com/victorporof/Sublime-HTMLPrettify",
"https://github.com/victorporof/Sublime-JSHint",
"https://github.com/viisual/ASCII-Decorator",
"https://github.com/villimagg/Larapaste-sublime-theme",
"https://github.com/vinhnx/Ciapre.tmTheme",
"https://github.com/vishr/local-history",
"https://github.com/vitorleal/Hex-to-RGB",
"https://github.com/viyano/sublime-oddly",
"https://github.com/vkostyukov/kotlin-sublime-package",
"https://github.com/vojtajina/sublime-BuildSwitcher",
"https://github.com/vojtajina/sublime-OpenRelated",
"https://github.com/voventus/AVR-ASM-Sublime",
"https://github.com/vprimachenko/Sublime2KeepOpen",
"https://github.com/Warin/SublimeTidyHTML",
"https://github.com/WarWithinMe/Sublime-CodeRunner",
"https://github.com/wass3r/tide-sublime",
"https://github.com/waynemoore/sublime-gherkin-formatter",
"https://github.com/wch/SendText",
"https://github.com/WebFont/webfont",
"https://github.com/WebGLTools/GL-Shader-Validator",
"https://github.com/welefen/KeymapManager",
"https://github.com/welovewordpress/SublimeHtmlTidy",
"https://github.com/welovewordpress/SublimePhpTidy",
"https://github.com/welovewordpress/SublimeWordPressCodex",
"https://github.com/wesf90/rails-partial",
"https://github.com/while1eq1/sublime-pastepm",
"https://github.com/whitequark/llvm.tmbundle",
"https://github.com/witsch/SublimePythonTidy",
"https://github.com/wpp1983/hlsl",
"https://github.com/wronex/sublime-angelscript",
"https://github.com/WrtApp/Writeapp",
"https://github.com/wulftone/sublime-text-2-quick-file-move",
"https://github.com/xamado/sublime-templateninja",
"https://github.com/Xaro/SublimeSendToPasteBin",
"https://github.com/Xavura/CoffeeScript-Sublime-Plugin",
"https://github.com/xeno-by/sublime-ant",
"https://github.com/xeno-by/sublime-nemerle",
"https://github.com/xsnippet/sublime-xsnippet",
"https://github.com/xt99/sublimetext-php-haml",
"https://github.com/XuefengWu/EverythingSearch-sublime2",
"https://github.com/yangweijie/SublimeThinkPHP",
"https://github.com/yedderson/SublimeRestart",
"https://github.com/yrammos/SublimeLog",
"https://github.com/yulanggong/IncrementSelection",
"https://github.com/ZaBlanc/RubyMotionSparrowSublimeCompletions",
"https://github.com/Zeelot/sublime-kohana",
"https://github.com/zerok/Sublime2-SwitchLanguage",
"https://github.com/zhongxingdou/AspNetSwitch",
"https://github.com/Zinggi/UnrealScriptIDE",
"https://github.com/zmbacker/RubyFormat",
"https://github.com/zoomix/SublimeToggleSymbol",
"https://github.com/zyxar/Sublime-CMakeLists",
"https://raw.github.com/afterdesign/MacTerminal/master/packages.json",
"https://raw.github.com/ajryan/CSharpreter/master/packages.json",
"https://raw.github.com/aparajita/active4d-sublime/master/package_control.json",
"https://raw.github.com/aponxi/sublime-better-coffeescript/master/package.json",
"https://raw.github.com/apophys/sublime-packages/master/packages.json",
"https://raw.github.com/blueplanet/sublime-text-2-octopress/master/packages.json",
"https://raw.github.com/camperdave/EC2Upload/master/packages.json",
"https://raw.github.com/ccpalettes/sublime-lorem-text/master/packages.json",
"https://raw.github.com/chancedai/sublime-cross/master/packages.json",
"https://raw.github.com/chikatoike/IMESupport/master/packages.json",
"https://raw.github.com/chriswong/sublime-mootools-snippets/master/packages.json",
"https://raw.github.com/colinta/sublime_packages/master/packages.json",
"https://raw.github.com/connec/Open-in-ConEmu/master/packages.json",
"https://raw.github.com/corbinian/GrowlNotifier/master/packages.json",
"https://raw.github.com/csytan/sublime-text-2-github/master/packages.json",
"https://raw.github.com/dallbee/RandomText/master/packages.json",
"https://raw.github.com/damccull/sublimetext2-SolarizedToggle/master/packages.json",
"https://raw.github.com/darinmorrison/sublime-packages/master/packages.json",
"https://raw.github.com/dexbol/sublime-TortoiseSVN/master/packages.json",
"https://raw.github.com/enriquein/JavaSetterGetter/master/packages.json",
"https://raw.github.com/fabric-engine/Sublime-KL/master/packages.json",
"https://raw.github.com/farcaller/DashDoc/master/packages.json",
"https://raw.github.com/FichteFoll/sublime_packages/master/package_control.json",
"https://raw.github.com/filcab/SublimeLLDB/master/packages.json",
"https://raw.github.com/Floobits/sublime-text-2-plugin/master/packages.json",
"https://raw.github.com/francodacosta/sublime-php-getters-setters/master/packages.json",
"https://raw.github.com/freewizard/sublime_packages/master/package_control.json",
"https://raw.github.com/gcollazo/sublime_packages/master/packages.json",
"https://raw.github.com/Harrison-M/indent.txt-sublime/master/packages.json",
"https://raw.github.com/himynameisjonas/sublime-ia-writer-opener/master/packages.json",
"https://raw.github.com/ikeike443/Sublime-Scalariform/master/packages.json",
"https://raw.github.com/jadb/st2-search-cakephp-api/master/packages.json",
"https://raw.github.com/jadb/st2-search-cakephp-book/master/packages.json",
"https://raw.github.com/jeffturcotte/sublime_packages/master/packages.json",
"https://raw.github.com/jfernandez/SublimeRailsEval/master/packages.json",
"https://raw.github.com/jfromaniello/sublime-unity-recents/master/packages.json",
"https://raw.github.com/joeyespo/sublimetext-console-exec/master/packages.json",
"https://raw.github.com/jpswelch/sublime-google-tasks/master/packages.json",
"https://raw.github.com/kairyou/SublimeTmpl/master/packages.json",
"https://raw.github.com/Kaizhi/SublimeUpdater/master/packages.json",
"https://raw.github.com/kallepersson/Sublime-Finder/master/packages.json",
"https://raw.github.com/keeganstreet/sublime-elfinder/master/packages.json",
"https://raw.github.com/keeganstreet/sublime-specificity/master/packages.json",
"https://raw.github.com/Kronuz/SublimeCodeIntel/master/package_control.json",
"https://raw.github.com/kylederkacz/lettuce-farmer/master/packages.json",
"https://raw.github.com/Learning/sublime_packages/master/packages.json",
"https://raw.github.com/leporo/SublimeYammy/master/packages.json",
"https://raw.github.com/LONGMANi/sublimetext-autobackups/master/packages.json",
"https://raw.github.com/LONGMANi/sublimetext-stringutilities/master/packages.json",
"https://raw.github.com/lucifr/CNPunctuationAutopair/master/packages.json",
"https://raw.github.com/lyapun/sublime-text-2-python-test-runner/master/packages.json",
"https://raw.github.com/mablo/sublime-text-2-meld-diff/master/packages.json",
"https://raw.github.com/Makopo/sublime-text-lsl/master/package.json",
"https://raw.github.com/mekwall/obsidian-color-scheme/master/packages.json",
"https://raw.github.com/merlinthered/sublime-rainmeter/master/packages.json",
"https://raw.github.com/mischah/Console-API-Snippets/master/packages.json",
"https://raw.github.com/Mozillion/SublimeSpeech/master/packages.json",
"https://raw.github.com/naomichi-y/php_syntax_checker/master/packages.json",
"https://raw.github.com/naomichi-y/string_counter/master/packages.json",
"https://raw.github.com/NicholasBuse/sublime_packages/master/packages.json",
"https://raw.github.com/nLight/Phing/master/packages.json",
"https://raw.github.com/quarnster/CompleteSharp/master/package.json",
"https://raw.github.com/quarnster/SublimeClang/master/package.json",
"https://raw.github.com/quarnster/SublimeJava/master/package.json",
"https://raw.github.com/raymondkww/R-sublime/master/packages.json",
"https://raw.github.com/rbo/st2-perltidy/master/package_control.json",
"https://raw.github.com/relikd/plist-binary_sublime/master/packages.json",
"https://raw.github.com/robcowie/SublimeTODO/master/packages.json",
"https://raw.github.com/ronmichael/sublime-sparql/master/packages.json",
"https://raw.github.com/royisme/SublimeOctopressTool/master/packages.json",
"https://raw.github.com/rpowers/sublime_stata/master/packages.json",
"https://raw.github.com/sdolard/sublime-jsrevival/master/packages.json",
"https://raw.github.com/seanliang/ConvertToUTF8/master/packages.json",
"https://raw.github.com/sentience/DokuWiki/master/packages.json",
"https://raw.github.com/sentience/HyperlinkHelper/master/packages.json",
"https://raw.github.com/shivkumarganesh/VisSub/master/packages.json",
"https://raw.github.com/sindresorhus/sublime-jsrun/master/packages.json",
"https://raw.github.com/SublimeLinter/SublimeLinter/master/package_control.json",
"https://raw.github.com/svaiter/SublimeJEDI/master/packages.json",
"https://raw.github.com/tbfisher/sublimetext-Pandoc/master/packages.json",
"https://raw.github.com/tcrosen/recessify/master/packages.json",
"https://raw.github.com/Ted-Mohamed/Split/master/packages.json",
"https://raw.github.com/theadamlt/sublime_packages/master/packages.json",
"https://raw.github.com/tiger2wander/sublime_packages/master/packages.json",
"https://raw.github.com/tillig/SublimeMSBuild/master/packages.json",
"https://raw.github.com/timonwong/sublime_packages/master/packages.json",
"https://raw.github.com/tmanderson/VintageLines/master/packages.json",
"https://raw.github.com/tomascayuelas/coolcodescheme/master/packages.json",
"https://raw.github.com/tsteur/sublimetext-tita/master/packages.json",
"https://raw.github.com/ttscoff/MarkdownEditing/master/packages.json",
"https://raw.github.com/tzvetkoff/sublime_stupid_indent/master/packages.json",
"https://raw.github.com/vkocubinsky/sublime_packages/master/packages.json",
"https://raw.github.com/wallysalami/QuickLook/master/packages.json",
"https://raw.github.com/weslly/sublime_packages/master/packages.json",
"https://raw.github.com/WhatWeDo/Sublime-Text-2-Compass-Build-System/master/packages.json",
"https://raw.github.com/wistful/SublimeAutoPEP8/master/packages.json",
"https://raw.github.com/wukkuan/AMD-Module-Editor/master/packages.json",
"https://raw.github.com/xgenvn/InputHelper/master/packages.json",
"https://raw.github.com/yangsu/sublime-io/master/packages.json",
"https://raw.github.com/yangsu/sublime-octopress/master/packages.json",
"https://raw.github.com/yangsu/sublime-vhdl/master/packages.json",
"https://raw.github.com/zfkun/sublime-kissy-snippets/master/packages.json"
],
"package_name_map": {
"ac-ruby-snippets": "Arnold Clark Snippets for Ruby",
"ampscript-st2": "AmpScript Highlighter",
"AngularJs.tmbundle": "AngularJS",
"antiki": "Antiki",
"APDL-Syntax": "APDL (ANSYS) Syntax Highlighting",
"aqua-theme": "Theme - Aqua",
"ASCII-Decorator": "ASCII Decorator",
"AspNetSwitch": "Asp.Net File Switch",
"Async-Snippets": "Async Snippets",
"auto-encoding-for-ruby": "Auto Encoding for Ruby",
"awk-sublime": "Awk",
"base16-textmate": "Base16 Color Schemes",
"base64-fold": "Base64 Fold",
"BEMHTMLSublime": "BEMHTML",