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