forked from wbond/package_control_channel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
repositories.json
2283 lines (2283 loc) · 111 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/alefragnani/toggle-delphi-file",
"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/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/ascott18/WoWXMLForSublimeText",
"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/avinash8526/CloseAllButThis-Sublime-PLugin",
"https://github.com/avinash8526/List2CSV-Sublime-Plugin",
"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/chadrien/sublime-toggl",
"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-OAuthlib",
"https://github.com/Chris---/SublimeText-Preference-Helper",
"https://github.com/chrisborrowdale/Idiomatic-CSS-Comments-Snippets",
"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/drugo76/sublime_json2csv",
"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/fnkr/SublimePascal",
"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/Harurow/sublime_markingchangedrows",
"https://github.com/Harurow/sublime_togglefile",
"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/3024.tmTheme",
"https://github.com/idleberg/NSIS-Sublime-Text",
"https://github.com/idleberg/NSIS-Sublime-Text-Addons",
"https://github.com/idleberg/Zissou.tmTheme",
"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-chaplinjs",
"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/jtwebb/WPath",
"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/MattDMo/Neon-sublime-theme",
"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/memco/Oceanic-tmTheme",
"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/oliverseal/tech49-theme",
"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/pjdietz/sublime-path-tools",
"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/rdougan/Sencha.sublime",
"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/rodcloutier/Vintageous-Origami",
"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/s1ider/sublime-behave-step-finder",
"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/simme--/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/sligodave/sublime_remote_open",
"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/spywhere/Javatar",
"https://github.com/squ1b3r/Djaneiro",
"https://github.com/srilumpa/SyntaxChecker",