forked from wbond/package_control_channel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepositories.json
2230 lines (2230 loc) · 108 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://release.latexing.com/packages.json",
"http://release.sublimegit.net/packages.json",
"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/atroxell/html-compress-and-replace",
"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/DanielSiepmann/mercurial-for-sublime",
"https://bitbucket.org/DanielSiepmann/typo3-fluid-snippets",
"https://bitbucket.org/do/smartmovetotheeol",
"https://bitbucket.org/dotCypress/coffeelint",
"https://bitbucket.org/dotCypress/haskellbuddy",
"https://bitbucket.org/esquivias/sublime-aml",
"https://bitbucket.org/hmml/jsonlint",
"https://bitbucket.org/hullabaloo/sublime-http-response-headers-snippets",
"https://bitbucket.org/inkytonik/scalaworksheet",
"https://bitbucket.org/jjones028/p4sublime/raw/tip/packages.json",
"https://bitbucket.org/klorenz/projectspecific",
"https://bitbucket.org/klorenz/syntaxhighlighttools",
"https://bitbucket.org/klorenz/wrapcommand",
"https://bitbucket.org/lewisjosh/buffersbackup",
"https://bitbucket.org/markstahler/insert-nums",
"https://bitbucket.org/muttley/sublimetext.blitzmax/raw/tip/packages.json",
"https://bitbucket.org/nwjlyons/copy-file-name",
"https://bitbucket.org/nwjlyons/google-search",
"https://bitbucket.org/pcaro90/html-crush-switch",
"https://bitbucket.org/PhillSparks/sublimesourcetree",
"https://bitbucket.org/pjv/setdjangosyntax",
"https://bitbucket.org/rablador/quickref",
"https://bitbucket.org/rablador/whocalled",
"https://bitbucket.org/ralmn/symfonytools-for-sublimetext-2",
"https://bitbucket.org/rbadmaev/sublime_file_switcher",
"https://bitbucket.org/StephaneBunel/pythonpep8autoformat",
"https://bitbucket.org/thejeshgn/hg4subl",
"https://bitbucket.org/trooper/statusbarextension",
"https://bitbucket.org/Tumbo/bootstrap-jade",
"/~https://github.com/06wj/cocos2d_lua_snippets",
"/~https://github.com/315234/MinimalFortran",
"/~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/SublimeSwitchViewInGroup",
"/~https://github.com/adampresley/sublime-blogify",
"/~https://github.com/adampresley/sublime-debugkiller",
"/~https://github.com/adampresley/sublime-fillcfquery",
"/~https://github.com/adampresley/sublime-js-minify",
"/~https://github.com/adampresley/sublime-view-in-browser",
"/~https://github.com/adzenith/CopyEdit",
"/~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/alefragnani/Sublime-Ant-Buildfile",
"/~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/alexeyza/sublime-exampleoverflow",
"/~https://github.com/alexnj/SublimeOnSaveBuild",
"/~https://github.com/alexpls/Rails-Latest-Migration",
"/~https://github.com/alexstrat/PEGjs.tmbundle",
"/~https://github.com/alienhard/SublimeAllAutocomplete",
"/~https://github.com/alimony/sublime-sort-numerically",
"/~https://github.com/allanhortle/Centurion",
"/~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/AlphawolfWMP/sublime-text-2-wpseek",
"/~https://github.com/ambethia/Sublime-Loom",
"/~https://github.com/ameyp/CscopeSublime",
"/~https://github.com/amireh/SwitchScript",
"/~https://github.com/amitsnyderman/sublime-smarty",
"/~https://github.com/amokan/ST2-Backbone.Marionette",
"/~https://github.com/andrewescott/WoWXMLForSublimeText",
"/~https://github.com/Anomareh/PHP-Twig.tmbundle",
"/~https://github.com/aparajita/Cappuccino-Sublime",
"/~https://github.com/Apathetic012/JustPaste",
"/~https://github.com/apex2060/xli-templateize",
"/~https://github.com/aphex/SuperAnt",
"/~https://github.com/ariatemplates/sublime-ariatemplates-snippets",
"/~https://github.com/ariatemplates/sublime-esformatter",
"/~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/atombender/sublime_text_alternative_autocompletion",
"/~https://github.com/austinhappel/sublime-csslint",
"/~https://github.com/axel22/sublime-javap",
"/~https://github.com/Azd325/sublime-text-caniuse",
"/~https://github.com/aziz/knockdown",
"/~https://github.com/aziz/PlainTasks",
"/~https://github.com/azzip/SublimeFeelingLucky",
"/~https://github.com/b-g/processing-sublime",
"/~https://github.com/b3ni/Sublime-Fabric",
"/~https://github.com/badsyntax/SassBeautify",
"/~https://github.com/balajithota85/sublime_scaffolding",
"/~https://github.com/balazstth/subl-esp",
"/~https://github.com/bartTC/SubDpaste",
"/~https://github.com/bbonora/SublimeCMSMadeSimple",
"/~https://github.com/bcharbonnier/SublimeFileSync",
"/~https://github.com/belike81/Sublime-File-Navigator",
"/~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/benschwarz/sublime-bower",
"/~https://github.com/Benvie/JavaScriptNext.tmLanguage",
"/~https://github.com/benweier/PresetCommand",
"/~https://github.com/benweier/Schemr",
"/~https://github.com/benweier/Themr",
"/~https://github.com/berendbaas/sublime_splittobuffer",
"/~https://github.com/berfarah/LESS-build-sublime",
"/~https://github.com/bernatfortet/sublime-frontend-delight",
"/~https://github.com/bfad/Sublime-Lasso",
"/~https://github.com/bgreenlee/sublime-github",
"/~https://github.com/biermeester/Pylinter",
"/~https://github.com/billymoon/LoremIpsum",
"/~https://github.com/billymoon/Stylus",
"/~https://github.com/billymoon/Sublime-Pipe-Dream",
"/~https://github.com/bistory/Sublime-Minifier",
"/~https://github.com/bit-part/MTML-ST2",
"/~https://github.com/bit-part/PowerMTML-ST2",
"/~https://github.com/bit101/STProjectMaker",
"/~https://github.com/bitbonsai/JSHint-Inline",
"/~https://github.com/bizoo/MultiTaskBuild",
"/~https://github.com/bizoo/SortTabs",
"/~https://github.com/bjorhn/Sublime-VDF-Languages",
"/~https://github.com/bkeller2/Mplus",
"/~https://github.com/blackjk3/threejs-sublime",
"/~https://github.com/blastmann/ScriptOgrSender",
"/~https://github.com/bliker/laravel4-snippets",
"/~https://github.com/bluegray/Highlight-Mixed-Whitespace",
"/~https://github.com/bmc/ST2SyntaxFromFileName",
"/~https://github.com/bnlucas/SassBuilder",
"/~https://github.com/bnu/sublime-xpressengine",
"/~https://github.com/bobthecow/sublime-sane-snippets",
"/~https://github.com/bohdon/sublimeAlternateVIMNavigation",
"/~https://github.com/borist/SublimePaneNavigation",
"/~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/cabaret/html-email-snippets",
"/~https://github.com/cabeca/SublimeChef",
"/~https://github.com/cafarm/aqua-theme",
"/~https://github.com/caiogondim/js-console-sublime-snippets",
"/~https://github.com/caiogondim/js-patterns-sublime-snippets",
"/~https://github.com/cakephp/cakephp-tmbundle",
"/~https://github.com/carlcalderon/sublime-color-schemes",
"/~https://github.com/carlo/sublime-underscorejs-snippets",
"/~https://github.com/castiron/sublime-jquery-coffee",
"/~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/Centny/GoGdb",
"/~https://github.com/cezarsa/sublime-sparql-runner",
"/~https://github.com/cgutierrez/JsMinifier",
"/~https://github.com/chadrien/package-bundler",
"/~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/chipotle/BBCode",
"/~https://github.com/Chris---/LaTeX-cwl",
"/~https://github.com/Chris---/SublimeText-Calendar-Week",
"/~https://github.com/Chris---/SublimeText-LaTeX-Blindtext",
"/~https://github.com/Chris---/SublimeText-Preference-Helper",
"/~https://github.com/chriskempson/base16-textmate",
"/~https://github.com/chrislongo/Pig",
"/~https://github.com/chrislongo/QuickThemes",
"/~https://github.com/chrokh/csharp-build-singlefile-sublime-text-2",
"/~https://github.com/Cipscis/Papyrus_Assembly",
"/~https://github.com/claudiosmweb/wordpress-readme-to-markdown",
"/~https://github.com/clemos/haxe-sublime-bundle",
"/~https://github.com/clintberry/sublime-text-2-ini",
"/~https://github.com/closureplease/sublime-google-closure-snippets",
"/~https://github.com/clslrns/bitrix-painkiller",
"/~https://github.com/cluther/SublimeZenoss",
"/~https://github.com/cockscomb/SublimeMakeExecutable",
"/~https://github.com/cockscomb/SublimePerldoc",
"/~https://github.com/codecarson/SublimeSuperSelect",
"/~https://github.com/CodeEffect/BoundKeys",
"/~https://github.com/CodeEffect/FindSelected",
"/~https://github.com/codeivate/codeivate-st",
"/~https://github.com/compleatang/Legal-Markdown-Sublime",
"/~https://github.com/compleatang/Legal-Snippets-Sublime",
"/~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/cschubiner/Sublime-Text-2-Color-Schemes",
"/~https://github.com/csscomb/CSScomb-for-Sublime",
"/~https://github.com/cthackers/SublimeGoBuild",
"/~https://github.com/ctruett/monokai-blueberry",
"/~https://github.com/cyphactor/sublime_guard",
"/~https://github.com/cyrilf/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/danpe/QuickRails",
"/~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/dave-f/udp-trace",
"/~https://github.com/davepeck/DirectorySettings",
"/~https://github.com/davezatch/Media-Query-Snippets",
"/~https://github.com/davidjrice/sublime-eco",
"/~https://github.com/davidpeckham/FilterLines",
"/~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/deadfoxygrandpa/Elm.tmLanguage",
"/~https://github.com/dedg3/sublime-magento-TemplateCopy",
"/~https://github.com/demon386/SmartMarkdown",
"/~https://github.com/dentedpixel/Unity3d-LeanTween-Snippets",
"/~https://github.com/derekchiang/Sublime-CoffeeScript-Formatter",
"/~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/dgrebb/ASCII-Comment-Snippets",
"/~https://github.com/dhodges/StepList",
"/~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/DJHoltkamp/Sublime-Moai-Debugger",
"/~https://github.com/djjcast/mirodark-st2",
"/~https://github.com/djjcast/sublime-ToggleMinimapOnScroll",
"/~https://github.com/dnstbr/sublpress",
"/~https://github.com/dobarkod/DjangoNoseTestRunner",
"/~https://github.com/dotCypress/GitHubMarkdownPreview",
"/~https://github.com/dotmaster/SublimeExpandSelectionToLineBefore",
"/~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/eBookArchitects/Incrementor",
"/~https://github.com/ecornell/Sublime-MoonScript",
"/~https://github.com/edankwan/Exec-Parser-Sublime-Plugin",
"/~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/ejoubaud/SublimeTabsLimiter",
"/~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/elixir-lang/elixir-tmbundle",
"/~https://github.com/elomarns/auto-encoding-for-ruby",
"/~https://github.com/eltimn/sublime-lift",
"/~https://github.com/email2vimalraj/DashedComments",
"/~https://github.com/emmetio/sublime-tern",
"/~https://github.com/enginespot/js-beautify-sublime",
"/~https://github.com/eonlepapillon/PathToFile",
"/~https://github.com/epitron/Julia-sublime",
"/~https://github.com/eproxus/focus_last_tab",
"/~https://github.com/ericclemmons/sublime-typescript",
"/~https://github.com/erichard/SublimeCTagsPHP",
"/~https://github.com/erichard/SublimePHPCompanion",
"/~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/fabriciotav/ember-snippets-for-sublime-text-2",
"/~https://github.com/facelessuser/ApplySyntax",
"/~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/failcoder/failcoder-theme",
"/~https://github.com/fanzheng/Sublime.Markdown2Clipboard",
"/~https://github.com/farzher/Sublime-Text-Themes",
"/~https://github.com/fbird/Sublime-Pomodoro",
"/~https://github.com/fblee/sublime-css-selector-reveal",
"/~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/flashpunk/Zurb-Foundation-Snippets",
"/~https://github.com/FlavourSys/Perv-ColorScheme",
"/~https://github.com/florianeckerstorfer/fe-sublime-phpunit",
"/~https://github.com/fmaj7/Mason",
"/~https://github.com/fnkr/SublimeClosureMyJS",
"/~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/foxxyz/sublime_alphpetize",
"/~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/FrenkyNet/CopyNamespace",
"/~https://github.com/friskfly/Youdao-Translate-For-Sublime",
"/~https://github.com/frodzet/SublimeWoWDevelopment",
"/~https://github.com/frou/CFeather",
"/~https://github.com/frou/GoFeather",
"/~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/geoffstokes/HypertextTypographer",
"/~https://github.com/geoffstokes/ShowEncoding",
"/~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/Gimped/GPD",
"/~https://github.com/gipsy-king/ControlScroll",
"/~https://github.com/gja/sublime-rmate",
"/~https://github.com/gja/sublime-text-2-jasmine",
"/~https://github.com/gl3n/sublime-php-namespace",
"/~https://github.com/glyph/E-Max",
"/~https://github.com/gnarula/sublime-laravelgenerator",
"/~https://github.com/godbout/sleeplessmind-color-scheme",
"/~https://github.com/golf3gtiii/Kohana234-sublimeText2-plugin",
"/~https://github.com/gondo/browsersupport",
"/~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/GravityScore/ST2-ComputerCraft-Package",
"/~https://github.com/groenewege/mdTodo",
"/~https://github.com/grundprinzip/RubyPipe",
"/~https://github.com/grundprinzip/sublemacspro",
"/~https://github.com/grundprinzip/sublime-dblp",
"/~https://github.com/gs/Cheetah.tmbundle",
"/~https://github.com/gs/sublime-text-go-to-file",
"/~https://github.com/guillaumebort/play2-sublimetext2",
"/~https://github.com/guillermooo/Vintageous",
"/~https://github.com/gumuz/currentscope",
"/~https://github.com/hachesilva/Comment-Snippets",
"/~https://github.com/HackerBaloo/SublimeOpenInTotalCommander",
"/~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/hikaruworld/Browse",
"/~https://github.com/hippasus/SublimeMorse",
"/~https://github.com/hoest/sublimetext-fsharp",
"/~https://github.com/hoest/SublimeXSLT",
"/~https://github.com/huntlyc/Sublime2-Wordpress-Dev-Plugin",
"/~https://github.com/hussani/Oblivion",
"/~https://github.com/hyspace/st2-reeder-theme",
"/~https://github.com/iafan/SublimeTextPreview",
"/~https://github.com/iamjessu/sublime-SplitScreen-Resizer",
"/~https://github.com/icylace/CursorRuler",
"/~https://github.com/Idered/esuna-snippets",
"/~https://github.com/idleberg/NSIS-Sublime-Text",
"/~https://github.com/idleberg/NSIS-Sublime-Text-Addons",
"/~https://github.com/idosela/sublime_new_from_selection",
"/~https://github.com/ignacysokolowski/SublimeTagWrapper",
"/~https://github.com/ignacysokolowski/SublimeVintageNumbers",
"/~https://github.com/iiAtlas/SmartGoogle",
"/~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/Iristyle/Sublime-AngularJS-Coffee-Completions",
"/~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/j10io/railsdev-sublime-snippets",
"/~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/JasonMortonNZ/bs3-sublime-plugin",
"/~https://github.com/jaumefontal/SASS-Build-SublimeText2",
"/~https://github.com/jawb/Matrixify",
"/~https://github.com/jbrooksuk/InsertNums",
"/~https://github.com/jbrooksuk/StripHTML",
"/~https://github.com/jbrooksuk/Sublime-Evaluate",
"/~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/jcowgar/sublime-duplicate-same",
"/~https://github.com/jcowgar/sublime-task-timer",
"/~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/jeromeetienne/tquery-sublime",
"/~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/jinze/sublime-rvm",
"/~https://github.com/jisaacks/CoffeeScriptHaml",
"/~https://github.com/jisaacks/GitGutter",
"/~https://github.com/jisaacks/MaxPane",
"/~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/jobywalker/PgSQL-Sublime",
"/~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/sublime-roy",
"/~https://github.com/jonlabelle/Trimmer",
"/~https://github.com/jonny64/ludik",
"/~https://github.com/jonschlinkert/pre-sublime",
"/~https://github.com/jonschlinkert/sublime-markdown-extended",
"/~https://github.com/jonschlinkert/sublime-monokai-extended",
"/~https://github.com/josegonzalez/sublimetext-cakephp",
"/~https://github.com/joseitinerarium/ST2-TiSearch",
"/~https://github.com/JoshCheek/sublime-text-2-seeing-is-believing",
"/~https://github.com/joshnh/CSS-Snippets",
"/~https://github.com/joshnh/HTML-Snippets",
"/~https://github.com/jotson/SublimeMagentoIntel",
"/~https://github.com/jpatzer/Tritium.tmbundle",
"/~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/SublimeGitGrep",
"/~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/SublimeSimpleTODO",
"/~https://github.com/jugyo/SublimeSnippetMaker",
"/~https://github.com/jugyo/SublimeTraverse",
"/~https://github.com/juhasz/drupal_sublime-snippets",
"/~https://github.com/juliandescottes/sublime-ariatemplates-highlighter",
"/~https://github.com/JulianEberius/SublimePythonIDE",
"/~https://github.com/JulianEberius/SublimeRope",
"/~https://github.com/julianxhokaxhiu/sublime-projecttreetemplater",
"/~https://github.com/justindmartin1/superman-color-scheme",
"/~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/kassi/sublime-text-2-guard-helpers",
"/~https://github.com/kassi/sublime-text-2-xmpfilter",
"/~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/khiltd/Saccades",
"/~https://github.com/khrizt/GotoLastEdit",
"/~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/kliu/SublimeLogHelper",
"/~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/kollhof/sublime-cypher",
"/~https://github.com/Korcholis/Andrew",
"/~https://github.com/kostajh/subDrush",
"/~https://github.com/kostajh/sublime-taskwarrior",
"/~https://github.com/kpym/SublimeLaTeXAccents",
"/~https://github.com/Kristories/Sublime-Mongo-PHP",
"/~https://github.com/kriswema/Sublime-BHT-BASIC",
"/~https://github.com/krockode/sublime-cucumber-completion",
"/~https://github.com/krussell/VintageEscape",
"/~https://github.com/kudanai/sublime-chordpro",
"/~https://github.com/kugland/Sublime-BetaCode",
"/~https://github.com/kutu/PythonAnywhereEditor",
"/~https://github.com/kutu/RandomMessage",
"/~https://github.com/kvs/ST2Nginx",
"/~https://github.com/kvs/ST2Slate",
"/~https://github.com/kvs/STEmacsModelines",
"/~https://github.com/kwattro/sublime-behat-snippets",
"/~https://github.com/Ky6uk/SublimeDancer",
"/~https://github.com/kyamaguchi/sublime-text-2-revert-hash-syntax",
"/~https://github.com/kyamaguchi/SublimeObjC2RubyMotion",
"/~https://github.com/laravel/sublime-snippets",
"/~https://github.com/larlequin/PandocAcademic",
"/~https://github.com/laughedelic/LoadFileToRepl",
"/~https://github.com/lazyguru/GoToClass",
"/~https://github.com/lcdsantos/CSSFontFamily",
"/~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/lingo/sublime-fscompletion",
"/~https://github.com/lionandoil/SublimeLaTeXWordCount",
"/~https://github.com/lioshi/lioshiScheme",
"/~https://github.com/lkraider/sublimetext2-apiary-blueprint",
"/~https://github.com/lmajano/cbox-coldbox-sublime",
"/~https://github.com/lmno/TOML",
"/~https://github.com/lolow/sublime-gams",
"/~https://github.com/lowerworld/SublimeFileClose",
"/~https://github.com/lowerworld/SublimeToggleSettings",
"/~https://github.com/lowliet/sublimetext-StatusBarTime",
"/~https://github.com/lukewilkins/EE-Add-On-Builder",
"/~https://github.com/Lunatrius/xmllint",
"/~https://github.com/lunixbochs/sublimelint",
"/~https://github.com/lunixbochs/SublimeXiki",
"/~https://github.com/luqman/SublimeText2RailsRelatedFiles",
"/~https://github.com/lvkun/eval_sel",
"/~https://github.com/m0nah/Laravel-4-Artisan",
"/~https://github.com/mac2000/sublime-smart-delete",
"/~https://github.com/MaciekBaron/sublime-list-less-vars",
"/~https://github.com/MaciekBaron/sublime-list-stylesheet-vars",
"/~https://github.com/madeingnecca/sublime-fillerati",
"/~https://github.com/madeingnecca/sublime-find-non-ascii",
"/~https://github.com/madeingnecca/sublime-slug",
"/~https://github.com/MakiseKurisu/MasmAssembly",
"/~https://github.com/malexer/SublimeTranslit",
"/~https://github.com/malroc/sourcetalk_st2",
"/~https://github.com/maltize/sublime-text-2-moo",
"/~https://github.com/maltize/sublime-text-2-ruby-tests",
"/~https://github.com/mandx/SublimeAutoSoftWrap",
"/~https://github.com/mangini/chrome-apis-sublime/tree/published",
"/~https://github.com/Manrich121/goFindCallers",
"/~https://github.com/marcelod/ipsums",
"/~https://github.com/marclar/RandomizeLogMessages",
"/~https://github.com/marconi/mako-tmbundle",
"/~https://github.com/marijnh/tern_for_sublime",
"/~https://github.com/MarioRicalde/SCSS.tmbundle/tree/SublimeText2",
"/~https://github.com/markandey/codefoo",
"/~https://github.com/martinsam/sublime-friendpaste",
"/~https://github.com/martinsam/sublime-unittest",
"/~https://github.com/martinssipenko/SublimeHostsEdit",
"/~https://github.com/martomo/SublimeTextXdebug",
"/~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/maxhoffmann/angular-snippets",
"/~https://github.com/mazurov/sublime-levels",
"/~https://github.com/mborgerson/Pad",
"/~https://github.com/mburrows/RecenterTopBottom",
"/~https://github.com/mctep/yate-textmate",
"/~https://github.com/mediaupstream/SublimeText-Crypto",
"/~https://github.com/mediaupstream/SublimeText-NodeEval",
"/~https://github.com/Mendor/sublime-blusted/tree/publish",
"/~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/sublime-strapdown-preview",
"/~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/mimshwright/sublime-eggplant-parm",
"/~https://github.com/minimedj/ErlDoc",
"/~https://github.com/minism/SublimeBufmod",
"/~https://github.com/minism/SublimeLove",
"/~https://github.com/misalazovic/PHP-MySQLi-connection",
"/~https://github.com/misaxi/sublime-code-preview",
"/~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/mistydemeo/DBTextWorks",
"/~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/mlf4aiur/sublimetext-markup-jira-confluence",
"/~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/moeffju/sublime-ledger-syntax",
"/~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/Nalum/Touch-WSGI",
"/~https://github.com/NaN1488/sublime-gem-browser/tree/stable",
"/~https://github.com/naokazuterada/MarkdownTOC",
"/~https://github.com/Narven/sublime-artisan",
"/~https://github.com/natew/ExpandSelectionByParagraph",
"/~https://github.com/nathanleiby/ChucK.tmbundle",
"/~https://github.com/nathos/sass-textmate-bundle/tree/sublime",
"/~https://github.com/Ndushi/RandomHEXColor",
"/~https://github.com/nerdo/fido",
"/~https://github.com/netatoo/phoenix-theme",
"/~https://github.com/nh2/sublime-text-move-tabs",
"/~https://github.com/nibblebot/sublime-js2coffee",
"/~https://github.com/nicetrysean/SublimeToHastebin",
"/~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/doctrine-sublime-snippets",
"/~https://github.com/npostulart/SCSS-Snippets",
"/~https://github.com/Nucc/Thesaurus",
"/~https://github.com/nucleartux/sublime-symfony",
"/~https://github.com/oct8cat/sublime-phpdox",
"/~https://github.com/odyssomay/paredit",
"/~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-paste-as-link",
"/~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/P233/Syntax-highlighting-for-Sass",
"/~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/papaDoc/FastSwitch",
"/~https://github.com/pashamur/ruby-extract-method",
"/~https://github.com/patgannon/sublimetext-scalatest",
"/~https://github.com/patricktalmadge/Bootstrapper_snippets",
"/~https://github.com/paulmillr/LiveScript.tmbundle",
"/~https://github.com/paulollivier/sublimetext-date",
"/~https://github.com/pavelpachkovskij/sublime-html-to-haml",
"/~https://github.com/pdaether/Sublime-SymfonyCommander",
"/~https://github.com/pderichs/sublime_rubocop",
"/~https://github.com/pensive612/sublime-chai-full-completions",
"/~https://github.com/Pephers/Super-Calculator",
"/~https://github.com/petereichinger/Unity3D-Shader",
"/~https://github.com/pheuter/BitcoinTicker",
"/~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/phuibonhoa/handcrafted-haml-textmate-bundle",
"/~https://github.com/Phunky/madebyphunky",
"/~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/Placester/placester-st2-plugin",
"/~https://github.com/Pleasurazy/Sublime-JavaScript-API-Completions",
"/~https://github.com/Pleasurazy/Sublime-Twitter-Bootstrap-ClassNames",
"/~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/pro711/sublime-verilog",
"/~https://github.com/ProjectCleverWeb/MultiLang",
"/~https://github.com/prongs/SublimeCodechef",
"/~https://github.com/prongs/SublimeNumberManipulation",
"/~https://github.com/ProtractorNinja/SPARC-sublime",
"/~https://github.com/psicomante/CLIPS-sublime",
"/~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/randy3k/Enhanced-R",
"/~https://github.com/rareyman/HTMLBeautify",
"/~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/rctay/sublime-text-2-buildview",
"/~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/rkJun/sublime-tipJS-snippets",
"/~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/robballou/gitconfig-sublimetext",
"/~https://github.com/robballou/sublimetext-sshconfig",
"/~https://github.com/robbl/sublime-switch",
"/~https://github.com/robcowie/SublimePaster",
"/~https://github.com/robinmalburn/sublime-tabfilter",
"/~https://github.com/Robot-Will/Stino",
"/~https://github.com/rockerest/Signatori",
"/~https://github.com/rodrigoflores/hosts",
"/~https://github.com/rodrigoflores/today",
"/~https://github.com/roesti77/Sublime-Open-Shading-Language",
"/~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/rozsahegyi/sublime-webloader",
"/~https://github.com/rposbo/sublimemarkpress",
"/~https://github.com/rrerolle/sublime-scheme-cycler",
"/~https://github.com/rspec/rspec-tmbundle",
"/~https://github.com/russCloak/SublimePuppet",
"/~https://github.com/s-a/sublime-text-refactor",
"/~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/samueljohn/Homebrew-formula-syntax",
"/~https://github.com/saulhudson/saulhudson-color-schemes",
"/~https://github.com/sc8696/sublime-css-auto-comments",
"/~https://github.com/schnittchen/sublime-helios",
"/~https://github.com/scriptcs/scriptcs-sublime",
"/~https://github.com/scttcper/Scriptogram",
"/~https://github.com/sdurette/SublimeWebFocus",
"/~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/seregatte/DrupalContribSearch",
"/~https://github.com/sergeche/emmet-sublime",
"/~https://github.com/serialhex/Language---Up-Goer-5",
"/~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/shammond42/cheater",
"/~https://github.com/ShaneWilton/sublime-smali",
"/~https://github.com/sheerun/sublime-wombat-theme",
"/~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/shvva/Lookupdic",
"/~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/silk-web-toolkit/SILK-snippets",
"/~https://github.com/SimonKern/Auto-Encoding-for-Python",
"/~https://github.com/simonrad/sublime-selection-tools",
"/~https://github.com/sindresorhus/editorconfig-sublime",
"/~https://github.com/sindresorhus/focus",
"/~https://github.com/sindresorhus/sublime-autoprefixer",
"/~https://github.com/SirReal/eZ-Publish-Syntax",
"/~https://github.com/sivakumar-kailasam/jprop-cleaner",
"/~https://github.com/sivakumar-kailasam/Repeat-Macro",
"/~https://github.com/six519/MonoRun",
"/~https://github.com/skarcha/SublimeText2-4GL",
"/~https://github.com/skoch/Sublime-ActionScript-3",
"/~https://github.com/skuroda/FindKeyConflicts",
"/~https://github.com/skuroda/PackageResourceViewer",
"/~https://github.com/skuroda/PersistentRegexHighlight",
"/~https://github.com/skuroda/Sublime-AdvancedNewFile",
"/~https://github.com/skyronic/DogEars",
"/~https://github.com/slim-template/ruby-slim.tmbundle",
"/~https://github.com/sloria/sublime-nose-snippets",
"/~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/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/sproutcore/sproutcore-sublime-text-2-package",
"/~https://github.com/squ1b3r/Djaneiro",
"/~https://github.com/srilumpa/SyntaxChecker",
"/~https://github.com/ssrihari/sublime-logger-snippets",
"/~https://github.com/standfast/Translate",
"/~https://github.com/stephendavis89/sublime-liquid",
"/~https://github.com/stevenjs/M68k-Assembly",
"/~https://github.com/stowns/Agile",
"/~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/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",