forked from wbond/package_control_channel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepositories.json
1698 lines (1698 loc) · 81.4 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/max-mykhailenko/memTask",
"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/talltroym/sublime-theme-railscasts",
"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/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/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",