-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitmodules
1131 lines (1131 loc) · 45.7 KB
/
.gitmodules
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
[submodule "Default.sublime-package"]
path = Default.sublime-package
url = https://github.com/evandroforks/SublimePackageDefault
[submodule "Packages/Default"]
path = Packages/Default
url = https://github.com/evandrocoan/SublimePackageDefault
upstream = https://github.com/evandroforks/SublimePackageDefault
branches = master->master,
[submodule "Packages/PythonDebugTools"]
path = Packages/debugtools
url = https://github.com/evandrocoan/debugtools
[submodule "Packages/Sublime Text Studio"]
path = Packages/channelmanager
url = https://github.com/evandrocoan/channelmanager
[submodule "Packages/PlantUmlConnection"]
path = Packages/plantumlconnection
url = https://github.com/evandrocoan/plantumlconnection
upstream = https://github.com/SamuelMarks/python-plantuml
branches = master->master,
[submodule "Packages/concurrent-log-handler"]
path = Packages/concurrentloghandler
url = https://github.com/evandroforks/concurrentloghandler
upstream = https://github.com/Preston-Landers/concurrent-log-handler
branches = master->master,
[submodule "Packages/portalocker"]
path = Packages/portalockerfile
url = https://github.com/evandroforks/portalockerfile
upstream = https://github.com/WoLpH/portalocker
branches = develop->master,
[submodule "Packages/sublime_lib"]
path = Packages/sublime_lib
url = https://github.com/evandrocoan/sublime_lib
upstream = https://github.com/SublimeText/sublime_lib
branches = master->master,
[submodule "Packages/python-pywin32"]
path = Packages/python-pywin32
url = https://github.com/evandroforks/python-pywin32
upstream = https://github.com/packagecontrol/sublime-pywin32
branches = master->master,
[submodule "Packages/DiffMatchPatch"]
path = Packages/diffmatchpatch
url = https://github.com/evandroforks/diffmatchpatch
upstream = https://github.com/google/diff-match-patch
branches = master->master,
[submodule "Packages/PushdownParser"]
path = Packages/pushdownparser
url = https://github.com/evandrocoan/pushdownparser
upstream = https://github.com/lark-parser/lark
branches = master->master,
[submodule "Packages/Notepad++ Color Scheme"]
path = Packages/Notepad++ Color Scheme
url = https://github.com/evandrocoan/NotepadPlusPlusColorScheme
[submodule "Packages/PlantUmlDiagrams"]
path = Packages/PlantUmlDiagrams
url = https://github.com/evandrocoan/PlantUmlDiagrams
upstream = https://github.com/jvantuyl/sublime_diagram_plugin
branches = master->master,
[submodule "Packages/amxmodx"]
path = Packages/AmxxEditor
url = https://github.com/evandrocoan/AmxxEditor
[submodule "Packages/All Autocomplete"]
path = Packages/AllAutocomplete
url = https://github.com/evandrocoan/AllAutocomplete
upstream = https://github.com/alienhard/SublimeAllAutocomplete
branches = master->master,
[submodule "StudioChannel"]
path = Packages/StudioChannel
url = https://github.com/evandrocoan/StudioChannel
[submodule ".versioning"]
path = .versioning
url = https://github.com/evandrocoan/.versioning
[submodule "githubpullrequests"]
path = githubpullrequests
url = https://github.com/evandrocoan/githubpullrequests
[submodule "Packages/User"]
path = Packages/User
url = https://github.com/evandrocoan/User
[submodule "Packages/SkipCloseForClonedViews"]
path = Packages/SkipCloseForClonedViews
url = https://github.com/evandrocoan/SkipCloseForClonedViews
[submodule "Packages/Amxx Pawn"]
path = Packages/AmxxPawn
url = https://github.com/evandrocoan/AmxxPawn
[submodule "Packages/Clear Cursors Carets"]
path = Packages/ClearCursorsCarets
url = https://github.com/evandrocoan/ClearCursorsCarets
[submodule "Packages/Clipboard Scope Copy"]
path = Packages/ClipboardScopeCopy
url = https://github.com/evandrocoan/ClipboardScopeCopy
[submodule "Packages/Default Syntax"]
path = Packages/DefaultSyntax
url = https://github.com/evandrocoan/DefaultSyntax
[submodule "Packages/OverrideEditSettingsDefaultContents"]
path = Packages/OverrideEditSettingsDefaultContents
url = https://github.com/evandrocoan/OverrideEditSettingsDefaultContents
[submodule "Packages/FixedToggleFindPanel"]
path = Packages/FixedToggleFindPanel
url = https://github.com/evandrocoan/FixedToggleFindPanel
[submodule "Packages/FixCommandPalette"]
path = Packages/RememberCommandPaletteInput
url = https://github.com/evandrocoan/RememberCommandPaletteInput
[submodule "Packages/Fix Project Switch Restart Bug"]
path = Packages/FixProjectSwitchRestartBug
url = https://github.com/evandrocoan/FixProjectSwitchRestartBug
[submodule "Packages/Fix Selection After Indent"]
path = Packages/FixSelectionAfterIndent
url = https://github.com/evandrocoan/FixSelectionAfterIndent
[submodule "Packages/Force Rewrite Sublime Settings"]
path = Packages/ForceRewriteSublimeSettings
url = https://github.com/evandrocoan/ForceRewriteSublimeSettings
[submodule "Packages/Octave"]
path = Packages/Octave
url = https://github.com/evandrocoan/SublimeOctave
[submodule "Packages/Open Auto Completion"]
path = Packages/OpenAutoCompletion
url = https://github.com/evandrocoan/OpenAutoCompletion
[submodule "Packages/Override Unpacked Packages"]
path = Packages/OverrideUnpackedPackages
url = https://github.com/evandrocoan/OverrideUnpackedPackages
[submodule "Packages/Overwrite Commit Completion"]
path = Packages/OverrideCommitCompletion
url = https://github.com/evandrocoan/OverrideCommitCompletion
[submodule "Packages/Rich Plain Text"]
path = Packages/RichPlainText
url = https://github.com/evandrocoan/RichPlainText
[submodule "Packages/SQL Keyword Uppercase"]
path = Packages/SQLKeywordUppercase
url = https://github.com/evandrocoan/SQLKeywordUppercase
[submodule "Packages/Select All Spelling Errors"]
path = Packages/SelectAllSpellingErrors
url = https://github.com/evandrocoan/SelectAllSpellingErrors
[submodule "Packages/View Settings Freely"]
path = Packages/ViewSettingsFreely
url = https://github.com/evandrocoan/ViewSettingsFreely
[submodule "Packages/User/Multilingual Dictionary"]
path = Packages/Language - English and Portuguese
url = https://github.com/evandrocoan/LanguageEnglishAndPortuguese
[submodule "Packages/AmxxChannel"]
path = Packages/AmxxChannel
url = https://github.com/evandrocoan/AmxxChannel
[submodule "Packages/ToggleSettingsInBatch"]
path = Packages/ToggleSettingsInBatch
url = https://github.com/evandrocoan/ToggleSettingsInBatch
[submodule "Packages/KeepPastedTextSelected"]
path = Packages/KeepPastedTextSelected
url = https://github.com/evandrocoan/KeepPastedTextSelected
[submodule "Packages/ASP"]
path = Packages/ASP
url = https://github.com/evandroforks/SublimePackageASP.git
[submodule "Packages/ActionScript"]
path = Packages/ActionScript
url = https://github.com/evandroforks/SublimePackageActionScript.git
[submodule "Packages/AppleScript"]
path = Packages/AppleScript
url = https://github.com/evandroforks/SublimePackageAppleScript.git
[submodule "Packages/C#"]
path = "Packages/C#"
url = https://github.com/evandroforks/SublimePackageCsharp.git
[submodule "Packages/C++"]
path = Packages/C++
url = https://github.com/evandroforks/SublimePackageCpp.git
[submodule "Packages/Clojure"]
path = Packages/Clojure
url = https://github.com/evandroforks/SublimePackageClojure.git
[submodule "Packages/CSS"]
path = Packages/CSS
url = https://github.com/evandroforks/SublimePackageCSS.git
[submodule "Packages/D"]
path = Packages/D
url = https://github.com/evandroforks/SublimePackageD.git
[submodule "Packages/Diff"]
path = Packages/Diff
url = https://github.com/evandroforks/SublimePackageDiff.git
[submodule "Packages/Erlang"]
path = Packages/Erlang
url = https://github.com/evandroforks/SublimePackageErlang.git
[submodule "Packages/Go"]
path = Packages/Go
url = https://github.com/evandroforks/SublimePackageGo.git
[submodule "Packages/Graphviz"]
path = Packages/Graphviz
url = https://github.com/evandroforks/SublimePackageGraphviz.git
[submodule "Packages/Groovy"]
path = Packages/Groovy
url = https://github.com/evandroforks/SublimePackageGroovy.git
[submodule "Packages/Haskell"]
path = Packages/Haskell
url = https://github.com/evandroforks/SublimePackageHaskell.git
[submodule "Packages/HTML"]
path = Packages/HTML
url = https://github.com/evandroforks/SublimePackageHTML.git
[submodule "Packages/Java"]
path = Packages/Java
url = https://github.com/evandroforks/SublimePackageJava.git
[submodule "Packages/JavaScript"]
path = Packages/JavaScript
url = https://github.com/evandroforks/SublimePackageJavaScript.git
[submodule "Packages/LaTeX"]
path = Packages/LaTeX
url = https://github.com/evandroforks/SublimePackageLaTeX.git
[submodule "Packages/JSON"]
path = Packages/JSON
url = https://github.com/evandroforks/SublimePackageJSON.git
[submodule "Packages/Lisp"]
path = Packages/Lisp
url = https://github.com/evandroforks/SublimePackageLisp.git
[submodule "Packages/Lua"]
path = Packages/Lua
url = https://github.com/evandroforks/SublimePackageLua.git
[submodule "Packages/Makefile"]
path = Packages/Makefile
url = https://github.com/evandroforks/SublimePackageMakefile.git
[submodule "Packages/Markdown"]
path = Packages/Markdown
url = https://github.com/evandroforks/SublimePackageMarkdown.git
[submodule "Packages/Matlab"]
path = Packages/Matlab
url = https://github.com/evandroforks/SublimePackageMatlab.git
[submodule "Packages/Objective-C"]
path = Packages/Objective-C
url = https://github.com/evandroforks/SublimePackageObjective-C.git
[submodule "Packages/OCaml"]
path = Packages/OCaml
url = https://github.com/evandroforks/SublimePackageOCaml.git
[submodule "Packages/Pascal"]
path = Packages/Pascal
url = https://github.com/evandroforks/SublimePackagePascal.git
[submodule "Packages/Perl"]
path = Packages/Perl
url = https://github.com/evandroforks/SublimePackagePerl.git
[submodule "Packages/PHP"]
path = Packages/PHP
url = https://github.com/evandroforks/SublimePackagePHP.git
[submodule "Packages/Python"]
path = Packages/Python
url = https://github.com/evandroforks/SublimePackagePython.git
[submodule "Packages/R"]
path = Packages/R
url = https://github.com/evandroforks/SublimePackageR.git
[submodule "Packages/Rails"]
path = Packages/Rails
url = https://github.com/evandroforks/SublimePackageRails.git
[submodule "Packages/RestructuredText"]
path = Packages/RestructuredText
url = https://github.com/evandroforks/SublimePackageRestructuredText.git
[submodule "Packages/Ruby"]
path = Packages/Ruby
url = https://github.com/evandroforks/SublimePackageRuby.git
[submodule "Packages/Rust"]
path = Packages/Rust
url = https://github.com/evandroforks/SublimePackageRust.git
[submodule "Packages/Scala"]
path = Packages/Scala
url = https://github.com/evandroforks/SublimePackageScala.git
[submodule "Packages/ShellScript"]
path = Packages/ShellScript
url = https://github.com/evandroforks/SublimePackageShellScript.git
[submodule "Packages/SQL"]
path = Packages/SQL
url = https://github.com/evandroforks/SublimePackageSQL.git
[submodule "Packages/TCL"]
path = Packages/TCL
url = https://github.com/evandroforks/SublimePackageTCL.git
[submodule "Packages/Textile"]
path = Packages/Textile
url = https://github.com/evandroforks/SublimePackageTextile.git
[submodule "Packages/XML"]
path = Packages/XML
url = https://github.com/evandroforks/SublimePackageXML.git
[submodule "Packages/YAML"]
path = Packages/YAML
url = https://github.com/evandroforks/SublimePackageYAML.git
[submodule "Packages/Regular Expressions"]
path = Packages/Regular Expressions
url = https://github.com/evandroforks/SublimePackageRegularExpressions.git
[submodule "Packages/Git Formats"]
path = Packages/Git Formats
url = https://github.com/evandroforks/SublimePackageGitFormats.git
[submodule "Packages/Batch File"]
path = Packages/Batch File
url = https://github.com/evandroforks/SublimePackageBatchFile.git
[submodule "Packages/ANSIescape"]
path = Packages/ANSIescape
url = https://github.com/evandroforks/ANSIescape
upstream = https://github.com/aziz/SublimeANSI
branches = master->master,
[submodule "Packages/Preferences Editor"]
path = Packages/QuickSettings
url = https://github.com/evandrocoan/QuickSettings
upstream = https://bitbucket.org/klorenz/sublimepreferenceseditor
branches = master->master,
[submodule "Packages/Add Folder To Project"]
path = Packages/AddFolderToProject
url = https://github.com/evandroforks/AddFolderToProject
upstream = https://github.com/DavidGerva/AddFolderToProject-SublimePlugin
branches = master->master,
[submodule "Packages/Advanced CSV"]
path = Packages/AdvancedCSV
url = https://github.com/evandroforks/AdvancedCSV
upstream = https://github.com/wadetb/Sublime-Text-Advanced-CSV
branches = master->master,
[submodule "Packages/AlignTab"]
path = Packages/AlignTab
url = https://github.com/evandroforks/AlignTab
upstream = https://github.com/randy3k/AlignTab
branches = master->master,
[submodule "Packages/AutoFileName"]
path = Packages/AutoFileName
url = https://github.com/evandrocoan/AutoFileName
upstream = https://github.com/liamcain/AutoFileName
branches = master->master,
[submodule "Packages/BBCode"]
path = Packages/BBCode
url = https://github.com/evandrocoan/BBCode
upstream = https://github.com/chipotle/BBCode
branches = master->master,
[submodule "Packages/Better CoffeeScript"]
path = Packages/BetterCoffeeScript
url = https://github.com/evandroforks/BetterCoffeescript
upstream = https://github.com/aponxi/sublime-better-coffeescript
branches = master->master,
[submodule "Packages/BufferScroll"]
path = Packages/BufferScroll
url = https://github.com/evandrocoan/BufferScroll
upstream = https://github.com/titoBouzout/BufferScroll
branches = st3->master,
[submodule "Packages/ChannelRepositoryTools"]
path = Packages/ChannelRepositoryTools
url = https://github.com/evandroforks/ChannelRepositoryTools
upstream = https://github.com/wbond/ChannelRepositoryTools
branches = master->master,
[submodule "Packages/Color Highlighter"]
path = Packages/Color Highlighter
url = https://github.com/evandroforks/ColorHighlighter
upstream = https://github.com/Monnoroch/ColorHighlighter
branches = master->master,
[submodule "Packages/ColorHelper"]
path = Packages/ColorHelper
url = https://github.com/evandroforks/ColorHelper
upstream = https://github.com/facelessuser/ColorHelper
branches = master->master,
[submodule "Packages/Compare Side-By-Side"]
path = Packages/SideBySideCompare
url = https://github.com/evandroforks/CompareSideBySide
upstream = https://bitbucket.org/dougty/sublime-compare-side-by-side
branches = master->master,
[submodule "Packages/CopyWithLineNumbersReloaded"]
path = Packages/CopyWithLineNumbersReloaded
url = https://github.com/evandroforks/CopyWithLineNumbersReloaded
upstream = https://github.com/crash5/CopyWithLineNumbersReloaded
branches = master->master,
[submodule "Packages/DocBlockr"]
path = Packages/DocBlockr
url = https://github.com/evandroforks/DocBlockr
upstream = https://github.com/spadgos/sublime-jsdocs
branches = master->master,
[submodule "Packages/ExportHtml"]
path = Packages/ExportHtml
url = https://github.com/evandroforks/ExportHtml
upstream = https://github.com/facelessuser/ExportHtml
branches = master->master,
[submodule "Packages/ExtendedTabSwitcher"]
path = Packages/ExtendedTabSwitcher
url = https://github.com/evandrocoan/ExtendedTabSwitcher
upstream = https://github.com/rajeshvaya/Sublime-Extended-Tab-Switcher
branches = master->master,
[submodule "Packages/FileDiffs"]
path = Packages/FileDiffs
url = https://github.com/evandroforks/FileDiffs
upstream = https://github.com/colinta/SublimeFileDiffs
branches = master->master,
[submodule "Packages/FileManager"]
path = Packages/FileManager
url = https://github.com/evandroforks/FileManager
upstream = https://github.com/math2001/FileManager
branches = master->master,
[submodule "Packages/FuzzyFileNav"]
path = Packages/FuzzyFileNav
url = https://github.com/evandroforks/FuzzyFileNav
upstream = https://github.com/facelessuser/FuzzyFileNav
branches = master->master,
[submodule "Packages/FuzzyFilePath"]
path = Packages/FuzzyFilePath
url = https://github.com/evandroforks/FuzzyFilePath
upstream = https://github.com/sagold/FuzzyFilePath
branches = master->master,
[submodule "Packages/Gist"]
path = Packages/Gist
url = https://github.com/evandroforks/Gist
upstream = https://github.com/condemil/Gist
branches = master->master,
[submodule "Packages/Google Spell Check"]
path = Packages/GoogleSpellCheck
url = https://github.com/evandroforks/GoogleSpellCheck
upstream = https://github.com/noahcoad/google-spell-check
branches = st3->master,
[submodule "Packages/GotoLastEditEnhanced"]
path = Packages/GotoLastEditEnhanced
url = https://github.com/evandroforks/GotoLastEditEnhanced
upstream = https://github.com/shagabutdinov/sublime-goto-last-edit-enhanced
branches = master->master,
[submodule "Packages/Highlight Build Errors"]
path = Packages/HighlightBuildErrors
url = https://github.com/evandroforks/HighlightBuildErrors
upstream = https://github.com/bblanchon/SublimeText-HighlightBuildErrors
branches = master->master,
[submodule "Packages/Hungry Backspace"]
path = Packages/HungryBackspace
url = https://github.com/evandroforks/HungryBackspace
upstream = https://github.com/xdrop/Hungry-Backspace
branches = master->master,
[submodule "Packages/Indent and braces"]
path = Packages/IndentAndBraces
url = https://github.com/evandroforks/IndentAndBraces
upstream = https://github.com/Epskampie/sublime_indent_and_braces
branches = master->master,
[submodule "Packages/InvertSelection"]
path = Packages/InvertSelection
url = https://github.com/evandroforks/InvertSelection
upstream = https://github.com/vontio/sublime-invert-selection
branches = master->master,
[submodule "Packages/LaTeXTools"]
path = Packages/LaTeXTools
url = https://github.com/evandroforks/LaTeXTools
upstream = https://github.com/SublimeText/LaTeXTools
branches = master->master,
[submodule "Packages/Local History"]
path = Packages/LocalHistory
url = https://github.com/evandroforks/LocalHistory
upstream = https://github.com/vishr/local-history
branches = master->master,
[submodule "Packages/Markdown to BB Code Converter"]
path = Packages/MarkdownToBBCode
url = https://github.com/evandrocoan/MarkdownToBBCode
upstream = https://github.com/Kristinita/1Sasha1MarkdownNoBBCode
branches = master->master,
[submodule "Packages/Origami"]
path = Packages/Origami
url = https://github.com/evandroforks/Origami
upstream = https://github.com/SublimeText/Origami
branches = master->master,
[submodule "Packages/Package Control"]
path = Packages/PackagesManager
url = https://github.com/evandrocoan/PackagesManager
upstream = https://github.com/wbond/package_control
branches = master->master,
[submodule "Packages/PackageDev"]
path = Packages/PackageDev
url = https://github.com/evandroforks/PackageDev
upstream = https://github.com/SublimeText/PackageDev
branches = master->master,
[submodule "Packages/PowerCursors"]
path = Packages/PowerCursors
url = https://github.com/evandroforks/PowerCursors
upstream = https://github.com/MaokaiLin/PowerCursors
branches = master->master,
[submodule "Packages/Project Specific Syntax Settings"]
path = Packages/ProjectSpecificSyntax
url = https://github.com/evandroforks/ProjectSpecificSyntax
upstream = https://github.com/reywood/sublime-project-specific-syntax
branches = master->master,
[submodule "Packages/Side-by-Side Settings"]
path = Packages/SideBySideSettings
url = https://github.com/evandroforks/SideBySideSettings
upstream = https://github.com/jgbishop/sxs-settings
branches = master->master,
[submodule "Packages/SideBarEnhancements"]
path = Packages/SideBarEnhancements
url = https://github.com/evandroforks/SideBarEnhancements
upstream = https://github.com/titoBouzout/SideBarEnhancements
branches = st3->master,
[submodule "Packages/SyncedSideBar"]
path = Packages/SyncedSideBar
url = https://github.com/evandroforks/SyncedSideBar
upstream = https://github.com/TheSpyder/SyncedSideBar
branches = master->master,
[submodule "Packages/SyntaxManager"]
path = Packages/SyntaxManager
url = https://github.com/evandroforks/SyntaxManager
upstream = https://github.com/randy3k/SyntaxManager
branches = master->master,
[submodule "Packages/Text Pastry"]
path = Packages/TextPastry
url = https://github.com/evandroforks/TextPastry
upstream = https://github.com/duydao/Text-Pastry
branches = master->master,
[submodule "Packages/Trimmer"]
path = Packages/Trimmer
url = https://github.com/evandroforks/Trimmer
upstream = https://github.com/jonlabelle/Trimmer
branches = master->master,
[submodule "Packages/Wrap Plus"]
path = Packages/WrapPlus
url = https://github.com/evandrocoan/WrapPlus
upstream = https://github.com/ehuss/Sublime-Wrap-Plus
branches = master->master,
[submodule "Packages/TypeScript"]
path = Packages/TypeScript
url = https://github.com/evandroforks/TypeScript
upstream = https://github.com/Microsoft/TypeScript-Sublime-Plugin
branches = master->master,
[submodule "Packages/Pretty JSON"]
path = Packages/PrettyJSON
url = https://github.com/evandroforks/PrettyJSON
upstream = https://github.com/dzhibas/SublimePrettyJson
branches = master->master,
[submodule "Packages/VBScript"]
path = Packages/VBScript
url = https://github.com/evandroforks/VBScript
upstream = https://github.com/SublimeText/VBScript
branches = master->master,
[submodule "Packages/REG"]
path = Packages/REG
url = https://github.com/evandroforks/REG
upstream = https://github.com/robertcollier4/REG
branches = master->master,
[submodule "Packages/Generic Config"]
path = Packages/GenericConfig
url = https://github.com/evandroforks/GenericConfig
upstream = https://github.com/skozlovf/Sublime-GenericConfig
branches = master->master,
[submodule "Packages/Dotfiles Syntax Highlighting"]
path = Packages/Dotfiles
url = https://github.com/evandroforks/Dotfiles
upstream = https://github.com/mattbanks/dotfiles-syntax-highlighting-st2
branches = master->master,
[submodule "Packages/Maven"]
path = Packages/Maven
url = https://github.com/evandroforks/Maven
upstream = https://github.com/nlloyd/SublimeMaven
branches = sublime3->master,
[submodule "Packages/SublimeLinter"]
path = Packages/SublimeLinter
url = https://github.com/evandroforks/SublimeLinter
upstream = https://github.com/SublimeLinter/SublimeLinter3
branches = master->master,
[submodule "Packages/SublimeLinter-javac"]
path = Packages/SublimeLinter-javac
url = https://github.com/evandroforks/SublimeLinter-javac
upstream = https://github.com/SublimeLinter/SublimeLinter-javac
branches = master->master,
[submodule "Packages/SelectUntil"]
path = Packages/SelectUntil
url = https://github.com/evandroforks/SelectUntil
upstream = https://github.com/xavi-/sublime-selectuntil
branches = master->master,
[submodule "Packages/Case Conversion"]
path = Packages/CaseConversion
url = https://github.com/evandrocoan/CaseConversion
upstream = https://github.com/jdavisclark/CaseConversion
branches = master->master,
[submodule "Packages/ApplySyntax"]
path = Packages/ApplySyntax
url = https://github.com/evandroforks/ApplySyntax
upstream = https://github.com/facelessuser/ApplySyntax
branches = master->master,
[submodule "Packages/x86 and x86_64 Assembly"]
path = Packages/X86Assembly
url = https://github.com/evandroforks/X86Assembly
upstream = https://github.com/13xforever/x86-assembly-textmate-bundle
branches = master->master,
[submodule "Packages/Incrementor"]
path = Packages/Incrementor
url = https://github.com/evandroforks/Incrementor
upstream = https://github.com/eBookArchitects/Incrementor
branches = master->master,
[submodule "Packages/TabsExtra"]
path = Packages/TabsExtra
url = https://github.com/evandroforks/TabsExtra
upstream = https://github.com/facelessuser/TabsExtra
branches = master->master,
[submodule "Packages/Increment Selection"]
path = Packages/IncrementSelection
url = https://github.com/evandroforks/IncrementSelection
upstream = https://github.com/yulanggong/IncrementSelection
branches = master->master,
[submodule "Packages/AutomaticPackageReloader"]
path = Packages/AutomaticPackageReloader
url = https://github.com/evandroforks/AutomaticPackageReloader
upstream = https://github.com/randy3k/AutomaticPackageReloader
branches = master->master,
[submodule "Packages/LaTeXSmartQuotes"]
path = Packages/LaTeXSmartQuotes
url = https://github.com/evandroforks/LaTeXSmartQuotes
upstream = https://github.com/r-stein/sublime-text-latex-smart-quotes
branches = master->master,
[submodule "Packages/A File Icon"]
path = Packages/A File Icon
url = https://github.com/evandroforks/AFileIcon
upstream = https://github.com/SublimeText/AFileIcon
branches = master->master,
[submodule "Packages/Alignment"]
path = Packages/Alignment
url = https://github.com/evandroforks/Alignment
upstream = https://github.com/wbond/sublime_alignment
branches = master->master,
[submodule "Packages/BracketHighlighter"]
path = Packages/BracketHighlighter
url = https://github.com/evandroforks/BracketHighlighter
upstream = https://github.com/facelessuser/BracketHighlighter
branches = master->master,
[submodule "Packages/C++ Completions"]
path = Packages/C++ Completions
url = https://github.com/evandroforks/CppCompletions
upstream = https://github.com/tushortz/CPP-Completions
branches = master->master,
[submodule "Packages/C++ Snippets"]
path = Packages/C++ Snippets
url = https://github.com/evandroforks/CppSnippets
upstream = https://github.com/Rapptz/cpp-sublime-snippet
branches = master->master,
[submodule "Packages/Chain of Command"]
path = Packages/ChainOfCommand
url = https://github.com/evandroforks/ChainOfCommand
upstream = https://github.com/jisaacks/ChainOfCommand
branches = master->master,
[submodule "Packages/ChangeQuotes"]
path = Packages/ChangeQuotes
url = https://github.com/evandroforks/ChangeQuotes
upstream = https://github.com/colinta/SublimeChangeQuotes
branches = main->master,
[submodule "Packages/Clickable URLs"]
path = Packages/ClickableURLs
url = https://github.com/evandroforks/ClickableURLs
upstream = https://github.com/leonid-shevtsov/ClickableUrls_SublimeText
branches = master->master,
[submodule "Packages/ColorSchemeEditor"]
path = Packages/ColorSchemeEditor
url = https://github.com/evandroforks/ColorSchemeEditor
upstream = https://github.com/bobef/ColorSchemeEditor
branches = master->master,
[submodule "Packages/Column Select"]
path = Packages/ColumnSelect
url = https://github.com/evandroforks/ColumnSelect
upstream = https://github.com/ehuss/Sublime-Column-Select
branches = master->master,
[submodule "Packages/Delete Current File"]
path = Packages/DeleteCurrentFile
url = https://github.com/evandroforks/DeleteCurrentFile
upstream = https://github.com/yaworsw/Sublime-DeleteCurrentFile
branches = master->master,
[submodule "Packages/DictionaryAutoComplete"]
path = Packages/DictionaryAutoComplete
url = https://github.com/evandroforks/DictionaryAutoComplete
upstream = https://github.com/Zinggi/DictionaryAutoComplete
branches = master->master,
[submodule "Packages/DistractionFreeWindow"]
path = Packages/DistractionFreeWindow
url = https://github.com/evandroforks/DistractionFreeWindow
upstream = https://github.com/aziz/DistractionFreeWindow
branches = master->master,
[submodule "Packages/DuplicateSelections"]
path = Packages/DuplicateSelections
url = https://github.com/evandroforks/DuplicateSelections
upstream = https://github.com/colinta/SublimeDuplicateSelections
branches = main->master,
[submodule "Packages/Edit Preferences"]
path = Packages/EditPreferences
url = https://github.com/evandroforks/EditPreferences
upstream = https://github.com/sublimator/EditPreferences
branches = master->master,
[submodule "Packages/Emmet"]
path = Packages/Emmet
url = https://github.com/evandroforks/Emmet
upstream = https://github.com/sergeche/emmet-sublime
branches = master->master,
[submodule "Packages/Extract Text to File"]
path = Packages/ExtractText
url = https://github.com/evandroforks/ExtractText
upstream = https://github.com/dreki/sublime-extract-to-file
branches = master->master,
[submodule "Packages/File History"]
path = Packages/FileHistory
url = https://github.com/evandroforks/FileHistory
upstream = https://github.com/FichteFoll/FileHistory
branches = master->master,
[submodule "Packages/File Rename"]
path = Packages/FileRename
url = https://github.com/evandroforks/FileRename
upstream = https://github.com/brianlow/FileRename
branches = master->master,
[submodule "Packages/Find++"]
path = Packages/Find++
url = https://github.com/evandroforks/FindPlusPlus
upstream = https://github.com/twolfson/FindPlusPlus
branches = master->master,
[submodule "Packages/FindKeyConflicts"]
path = Packages/FindKeyConflicts
url = https://github.com/evandroforks/FindKeyConflicts
upstream = https://github.com/skuroda/FindKeyConflicts
branches = master->master,
[submodule "Packages/Git"]
path = Packages/Git
url = https://github.com/evandroforks/SublimeGit
upstream = https://github.com/kemayo/sublime-text-git
branches = master->master,
[submodule "Packages/GitGutter"]
path = Packages/GitGutter
url = https://github.com/evandroforks/GitGutter
upstream = https://github.com/jisaacks/GitGutter
branches = master->master,
[submodule "Packages/GitHub Markdown Snippets"]
path = Packages/GitHubMarkdownSnippets
url = https://github.com/evandroforks/GithubMarkdownSnippets
upstream = https://github.com/praveenpuglia/github_markdown_snippets
branches = master->master,
[submodule "Packages/Glue"]
path = Packages/Glue
url = https://github.com/evandroforks/Glue
upstream = https://github.com/chrissimpkins/glue
branches = master->master,
[submodule "Packages/HighlightWords"]
path = Packages/HighlightWords
url = https://github.com/evandrocoan/HighlightWords
upstream = https://github.com/seanliang/HighlightWords
branches = master->master,
[submodule "Packages/Horizontal Scroll"]
path = Packages/HorizontalScroll
url = https://github.com/evandroforks/HorizontalScroll
upstream = https://github.com/pyrrho/sublime-horizontal-scroll
branches = master->master,
[submodule "Packages/BetterFindBuffer"]
path = Packages/BetterFindBuffer
url = https://github.com/evandroforks/BetterFindBuffer
upstream = https://github.com/aziz/BetterFindBuffer
branches = master->master,
[submodule "Packages/Indent Size"]
path = Packages/IndentSize
url = https://github.com/evandroforks/IndentSize
upstream = https://github.com/socsieng/sublime-indent-size
branches = master->master,
[submodule "Packages/Javatar"]
path = Packages/Javatar
url = https://github.com/evandroforks/Javatar
upstream = https://github.com/spywhere/Javatar
branches = master->master,
[submodule "Packages/LaTeX Word Count"]
path = Packages/LaTeXWordCount
url = https://github.com/evandroforks/LaTeXWordCount
upstream = https://github.com/kevinstadler/SublimeLaTeXWordCount
branches = master->master,
[submodule "Packages/LESS"]
path = Packages/LESS
url = https://github.com/evandroforks/LESS
upstream = https://github.com/danro/LESS-sublime
branches = master->master,
[submodule "Packages/Line Endings Unify"]
path = Packages/LineEndingsUnify
url = https://github.com/evandroforks/LineEndingsUnify
upstream = https://github.com/vontio/sublime-line-endings-unify
branches = master->master,
[submodule "Packages/Markdown Preview"]
path = Packages/MarkdownPreview
url = https://github.com/evandroforks/MarkdownPreview
upstream = https://github.com/facelessuser/MarkdownPreview
branches = master->master,
[submodule "Packages/Matlab Completions"]
path = Packages/MatlabCompletions
url = https://github.com/evandroforks/MatlabCompletions
upstream = https://github.com/tushortz/Matlab-Completions
branches = master->master,
[submodule "Packages/MatlabFilenameAutoComplete"]
path = Packages/MatlabFilenameAutoComplete
url = https://github.com/evandroforks/MatlabFilenameAutoComplete
upstream = https://github.com/joepmoritz/MatlabFilenameAutoComplete
branches = master->master,
[submodule "Packages/MaxPane"]
path = Packages/MaxPane
url = https://github.com/evandrocoan/MaxPane
upstream = https://github.com/jisaacks/MaxPane
branches = master->master,
[submodule "Packages/MoveText"]
path = Packages/MoveText
url = https://github.com/evandroforks/MoveText
upstream = https://github.com/colinta/SublimeMoveText
branches = main->master,
[submodule "Packages/MultiEditUtils"]
path = Packages/MultiEditUtils
url = https://github.com/evandroforks/MultiEditUtils
upstream = https://github.com/philippotto/Sublime-MultiEditUtils
branches = master->master,
[submodule "Packages/MySQL Snippets"]
path = Packages/MySQLSnippets
url = https://github.com/evandroforks/MySqlSnippets
upstream = https://github.com/korniychuk/sublime-sql-snippets
branches = master->master,
[submodule "Packages/Number King"]
path = Packages/NumberKing
url = https://github.com/evandroforks/NumberKing
upstream = https://github.com/hktonylee/SublimeNumberKing
branches = master->master,
[submodule "Packages/OverrideAudit"]
path = Packages/OverrideAudit
url = https://github.com/evandroforks/OverrideAudit
upstream = https://github.com/OdatNurd/OverrideAudit
branches = master->master,
[submodule "Packages/PackageResourceViewer"]
path = Packages/PackageResourceViewer
url = https://github.com/evandroforks/PackageResourceViewer
upstream = https://github.com/skuroda/PackageResourceViewer
branches = master->master,
[submodule "Packages/Path Translator"]
path = Packages/PathTranslator
url = https://github.com/evandroforks/PathTranslator
upstream = https://github.com/hbhakhra/Path-Translator
branches = master->master,
[submodule "Packages/PostScript"]
path = Packages/PostScript
url = https://github.com/evandroforks/PostScript
upstream = https://github.com/Briles/sublime-syntax-postscript
branches = master->master,
[submodule "Packages/Qt Completions for C++"]
path = Packages/C++ Qt Completions
url = https://github.com/evandroforks/CppQtCompletions
upstream = https://github.com/tushortz/Qt-Completions-for-Cpp
branches = master->master,
[submodule "Packages/ReIndent"]
path = Packages/ReIndent
url = https://github.com/evandroforks/ReIndent
upstream = https://github.com/kamilkp/Sublime-Text-ReIndent
branches = master->master,
[submodule "Packages/ScopeHunter"]
path = Packages/ScopeHunter
url = https://github.com/evandroforks/ScopeHunter
upstream = https://github.com/facelessuser/ScopeHunter
branches = master->master,
[submodule "Packages/SQLExec"]
path = Packages/SQLExec
url = https://github.com/evandroforks/SQLExec
upstream = https://github.com/jum4/sublime-sqlexec
branches = master->master,
[submodule "Packages/StickySearch"]
path = Packages/StickySearch
url = https://github.com/evandroforks/StickySearch
upstream = https://github.com/vim-zz/StickySearch
branches = master->master,
[submodule "Packages/ScopeAlways"]
path = Packages/ScopeAlways
url = https://github.com/evandroforks/ScopeAlways
upstream = https://github.com/yaworsw/Sublime-ScopeAlways
branches = master->master,
[submodule "Packages/sublime-text-2-buildview"]
path = Packages/BuildView
url = https://github.com/evandrocoan/BuildView
upstream = https://github.com/rctay/sublime-text-2-buildview
branches = master->master,
[submodule "Packages/Swift"]
path = Packages/Swift
url = https://github.com/evandroforks/Swift
upstream = https://github.com/quiqueg/Swift-Sublime-Package
branches = master->master,
[submodule "Packages/Sync View Scroll"]
path = Packages/SyncViewScroll
url = https://github.com/evandroforks/SyncViewScroll
upstream = https://github.com/zzjin/syncViewScroll
branches = master->master,
[submodule "Packages/TOML"]
path = Packages/TOML
url = https://github.com/evandroforks/Toml
upstream = https://github.com/jasonwilliams/sublime_toml_highlighting
branches = master->master,
[submodule "Packages/UnitTesting"]
path = Packages/UnitTesting
url = https://github.com/evandrocoan/UnitTesting
upstream = https://github.com/SublimeText/UnitTesting
branches = master->master,
[submodule "Packages/Whitespace"]
path = Packages/Whitespace
url = https://github.com/evandroforks/Whitespace
upstream = https://github.com/randy3k/Whitespace
branches = master->master,
[submodule "Packages/WordHighlight"]
path = Packages/HighlightWordsOnSelection
url = https://github.com/evandrocoan/HighlightWordsOnSelection
upstream = https://github.com/SublimeText/WordHighlight
branches = master->master,
[submodule "Packages/Terminal"]
path = Packages/TerminalShortcuts
url = https://github.com/evandroforks/TerminalShortcuts
upstream = https://github.com/wbond/sublime_terminal
branches = master->master,
[submodule "Packages/Sublime Tutor"]
path = Packages/SublimeTutorial
url = https://github.com/evandroforks/SublimeTutorial
upstream = https://github.com/jaipandya/SublimeTutor
branches = master->master,
[submodule "Packages/SQLTools"]
path = Packages/SQLTools
url = https://github.com/evandroforks/SQLTools
upstream = https://github.com/mtxr/SQLTools
branches = master->master,
[submodule "Packages/Syntax Highlighting for Sass"]
path = Packages/SassSyntax
url = https://github.com/evandroforks/SassSyntax
upstream = https://github.com/P233/Syntax-highlighting-for-Sass
branches = master->master,
[submodule "Packages/ConvertToUTF8"]
path = Packages/ConvertToUTF8
url = https://github.com/evandroforks/ConvertToUTF8
upstream = https://github.com/seanliang/ConvertToUTF8
branches = master->master,
[submodule "Packages/Random Everything"]
path = Packages/RandomEverything
url = https://github.com/evandroforks/RandomEverything
upstream = https://github.com/kimpettersen/random-sublime-text-plugin
branches = master->master,
[submodule "Packages/Insert Nums"]
path = Packages/InsertNums
url = https://github.com/evandroforks/InsertNums
upstream = https://github.com/jbrooksuk/InsertNums
branches = master->master,
[submodule "Packages/AutoWrap"]
path = Packages/AutoWrap
url = https://github.com/evandroforks/AutoWrap
upstream = https://github.com/randy3k/AutoWrap
branches = master->master,
[submodule "Packages/Toggle Words"]
path = Packages/ToggleWords
url = https://github.com/evandroforks/ToggleWords
upstream = https://github.com/gordio/ToggleWords
branches = main->master,
[submodule "Packages/AceJump"]
path = Packages/AceJump
url = https://github.com/evandroforks/AceJump
upstream = https://github.com/ice9js/ace-jump-sublime
branches = master->master,
[submodule "Packages/AltUp"]
path = Packages/AltUp
url = https://github.com/evandroforks/AltUp
upstream = https://github.com/germtb/AltUp
branches = master->master,
[submodule "Packages/Jump Along Indent"]
path = Packages/JumpAlongIndent
url = https://github.com/evandroforks/JumpAlongIndent
upstream = https://github.com/mwean/sublime_jump_along_indent
branches = master->master,
[submodule "Packages/Select all by current scope"]
path = Packages/SelectAll
url = https://github.com/evandroforks/SelectAll
upstream = https://github.com/mreq/sublime-select-all-by-current-scope
branches = master->master,
[submodule "Packages/ExpandRegion"]
path = Packages/ExpandRegion
url = https://github.com/evandroforks/ExpandRegion
upstream = https://github.com/aronwoost/sublime-expand-region
branches = master->master,
[submodule "Packages/SemanticLineWrapping"]
path = Packages/SemanticLineWrap
url = https://github.com/evandroforks/SemanticLineWrap
upstream = https://github.com/bordaigorl/sublime-semantic-wrap
branches = master->master,
[submodule "Packages/WordingStatus"]
path = Packages/WordingStatus
url = https://github.com/evandrocoan/WordingStatus
upstream = https://github.com/titoBouzout/WordingStatus
branches = st3->master,
[submodule "Packages/ColorSchemeUnit"]
path = Packages/ColorSchemeUnit
url = https://github.com/evandroforks/ColorSchemeUnit
upstream = https://github.com/gerardroche/sublime-color-scheme-unit
branches = master->master,
[submodule "Packages/LinesMultisets"]
path = Packages/LinesMultisets
url = https://github.com/evandroforks/LinesMultisets
upstream = https://github.com/heldev/sublime-lines-multisets
branches = master->master,
[submodule "Packages/LSP"]
path = Packages/LSP
url = https://github.com/evandrocoan/LSP
upstream = https://github.com/sublimelsp/LSP
branches = main->master,
[submodule "Packages/PanelManager"]
path = Packages/PanelManager
url = https://github.com/evandroforks/PanelManager
upstream = https://github.com/stoivo/sublime_switch_panel
branches = master->master,
[submodule "Packages/LanguageTool"]
path = Packages/LanguageTool
url = https://github.com/evandroforks/LanguageTool
upstream = https://github.com/gtarawneh/languagetool-sublime
branches = master->master,
[submodule "Packages/ShellEvaluate"]
path = Packages/EvaluateShell
url = https://github.com/evandroforks/ShellEvaluate
upstream = https://github.com/jbrooksuk/Sublime-Evaluate
branches = master->master,
[submodule "Packages/EvalPrinter"]
path = Packages/EvaluatePrinter
url = https://github.com/evandroforks/EvalPrinter
upstream = https://github.com/philippotto/Sublime-EvalPrinter
branches = master->master,
[submodule "Packages/InlinePython"]
path = Packages/EvaluateInlinePython
url = https://github.com/evandroforks/InlinePython
upstream = https://github.com/apiad/Sublime-InlinePython
branches = master->master,
[submodule "Packages/PowerShell"]
path = Packages/PowerShell
url = https://github.com/evandroforks/PowerShell
upstream = https://github.com/SublimeText/PowerShell