Skip to content

Commit 87c98f8

Browse files
committed
Revert "Squashed commit of the following:"
This reverts commit 5ae60c7.
1 parent 5ae60c7 commit 87c98f8

File tree

758 files changed

+1730
-76912
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

758 files changed

+1730
-76912
lines changed

data/packages/algorithm2e.json

Lines changed: 0 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,6 @@
428428
"Begin{}": {
429429
"snippet": "Begin{${1:block inside}}"
430430
},
431-
"Begin(){}": {
432-
"snippet": "Begin(${2:begin comment}){${1:block inside}}"
433-
},
434431
"tcc{}": {
435432
"snippet": "tcc{${1:comments}}"
436433
},
@@ -452,189 +449,90 @@
452449
"If{}{}": {
453450
"snippet": "If{${1:condition}}{${2:then block}}"
454451
},
455-
"If(){}{}": {
456-
"snippet": "If(${3:then comment}){${1:condition}}{${2:then block}}"
457-
},
458452
"uIf{}{}": {
459453
"snippet": "uIf{${1:condition}}{${2:then block without end}}"
460454
},
461-
"uIf(){}{}": {
462-
"snippet": "uIf(${3:then comment}){${1:condition}}{${2:then block without end}}"
463-
},
464455
"lIf{}{}": {
465456
"snippet": "lIf{${1:condition}}{${2:then line}}"
466457
},
467-
"lIf(){}{}": {
468-
"snippet": "lIf(${3:if comment}){${1:condition}}{${2:then line}}"
469-
},
470458
"ElseIf{}": {
471459
"snippet": "ElseIf{${1:elseif block}}"
472460
},
473-
"ElseIf(){}": {
474-
"snippet": "ElseIf(${2:elseif comment}){${1:elseif block}}"
475-
},
476461
"uElseIf{}": {
477462
"snippet": "uElseIf{${1:elseif block without end}}"
478463
},
479-
"uElseIf(){}": {
480-
"snippet": "uElseIf(${2:elseif comment}){${1:elseif block without end}}"
481-
},
482464
"lElseIf{}": {
483465
"snippet": "lElseIf{${1:elseif line}}"
484466
},
485-
"lElseif(){}": {
486-
"snippet": "lElseif(${2:elseif line}){${1:elseif block}}"
487-
},
488467
"Else{}": {
489468
"snippet": "Else{${1:else block}}"
490469
},
491-
"Else(){}": {
492-
"snippet": "Else(${2:else comment}){${1:else block}}"
493-
},
494470
"uElse{}": {
495471
"snippet": "uElse{${1:else block without end}}"
496472
},
497-
"uElse(){}": {
498-
"snippet": "uElse(${2:else block comment}){${1:else block without end}}"
499-
},
500473
"lElse{}": {
501474
"snippet": "lElse{${1:else line}}"
502475
},
503-
"lElse(){}": {
504-
"snippet": "lElse(${2:else comment}){${1:else line}}"
505-
},
506476
"eIf{}{}{}": {
507477
"snippet": "eIf{${1:condition}}{${2:then block}}{${3:else block}}"
508478
},
509-
"eIf(){}{}(){}": {
510-
"snippet": "eIf(${4:then comment}){${1:condition}}{${2:then block}}(${5:else comment}){${3:else block}}"
511-
},
512-
"eIf(){}{}{}": {
513-
"snippet": "eIf(${4:then comment}){${1:condition}}{${2:then block}}{${3:else block}}"
514-
},
515-
"eIf{}{}(){}": {
516-
"snippet": "eIf{${1:condition}}{${2:then block}}(${4:else comment}){${3:else block}}"
517-
},
518479
"leIf{}{}{}": {
519480
"snippet": "leIf{${1:condition}}{${2:then line}}{${3:else line}}"
520481
},
521-
"leIf(){}{}{}": {
522-
"snippet": "leIf(${4:comment}){${1:condition}}{${2:then line}}{${3:else line}}"
523-
},
524-
"Switch(){}{}": {
525-
"snippet": "Switch(${3:switch comment}){${1:condition}}{${2:switch block}}"
526-
},
527482
"Switch{}{}": {
528483
"snippet": "Switch{${1:condition}}{${2:switch block}}"
529484
},
530485
"Case{}{}": {
531486
"snippet": "Case{${1:case}}{${2:case block}}"
532487
},
533-
"Case(){}{}": {
534-
"snippet": "Case(${3:case comment}){${1:case}}{${2:case block}}"
535-
},
536488
"uCase{}{}": {
537489
"snippet": "uCase{${1:case}}{${2:case block without end}}"
538490
},
539-
"uCase(){}{}": {
540-
"snippet": "uCase(${3:case comment}){${1:case}}{${2:case block without end}}"
541-
},
542491
"lCase{}{}": {
543492
"snippet": "lCase{${1:case}}{${2:case line}}"
544493
},
545-
"lCase(){}{}": {
546-
"snippet": "lCase(${3:case comment}){${1:case}}{${2:case line}}"
547-
},
548494
"Other{}": {
549495
"snippet": "Other{${1:otherwise block}}"
550496
},
551-
"Other(){}": {
552-
"snippet": "Other(${2:other comment}){${1:otherwise block}}"
553-
},
554497
"uOther{}": {
555498
"snippet": "uOther{${1:otherwise text}}"
556499
},
557-
"uOther(){}": {
558-
"snippet": "uOther(${2:other comment}){${1:otherwise text}}"
559-
},
560500
"lOther{}": {
561501
"snippet": "lOther{${1:otherwise line}}"
562502
},
563-
"lOther(){}": {
564-
"snippet": "lOther(${2:other comment}){${1:otherwise line}}"
565-
},
566503
"For{}{}": {
567504
"snippet": "For{${1:condition}}{${2:for block}}"
568505
},
569-
"For(){}{}": {
570-
"snippet": "For(${3:for comment}){${1:condition}}{${2:for block}}"
571-
},
572506
"lFor{}{}": {
573507
"snippet": "lFor{${1:condition}}{${2:for line}}"
574508
},
575-
"lFor(){}{}": {
576-
"snippet": "lFor(${3:for comment}){${1:condition}}{${2:for line}}"
577-
},
578509
"While{}{}": {
579510
"snippet": "While{${1:condition}}{${2:while block}}"
580511
},
581-
"While(){}{}": {
582-
"snippet": "While(${3:while comment}){${1:condition}}{${2:while block}}"
583-
},
584512
"lWhile{}{}": {
585513
"snippet": "lWhile{${1:condition}}{${2:while line}}"
586514
},
587-
"lWhile(){}{}": {
588-
"snippet": "lWhile(${3:while comment}){${1:condition}}{${2:while line}}"
589-
},
590515
"ForPar{}{}": {
591516
"snippet": "ForPar{${1:condition}}{${2:foreach block}}"
592517
},
593-
"ForPar(){}{}": {
594-
"snippet": "ForPar(${3:foreach comment}){${1:condition}}{${2:foreach block}}"
595-
},
596518
"ForEach{}{}": {
597519
"snippet": "ForEach{${1:condition}}{${2:foreach block}}"
598520
},
599-
"ForEach(){}{}": {
600-
"snippet": "ForEach(${3:foreach comment}){${1:condition}}{${2:foreach block}}"
601-
},
602521
"lForEach{}{}": {
603522
"snippet": "lForEach{${1:condition}}{${2:foreach line}}"
604523
},
605-
"lForEach(){}{}": {
606-
"snippet": "lForEach(${3:foreach comment}){${1:condition}}{${2:foreach line}}"
607-
},
608524
"ForAll{}{}": {
609525
"snippet": "ForAll{${1:condition}}{${2:forall block}}"
610526
},
611-
"ForAll(){}{}": {
612-
"snippet": "ForAll(${3:forall comment}){${1:condition}}{${2:forall block}}"
613-
},
614527
"lForAll{}{}": {
615528
"snippet": "lForAll{${1:condition}}{${2:forall line}}"
616529
},
617-
"lForAll(){}{}": {
618-
"snippet": "lForAll(${3:forall comment}){${1:condition}}{${2:forall line}}"
619-
},
620530
"Repeat{}{}": {
621531
"snippet": "Repeat{${1:end condition}}{${2:repeat block}}"
622532
},
623-
"Repeat(){}{}()": {
624-
"snippet": "Repeat(${3:repeat comment}){${1:end condition}}{${2:repeat block}}(${4:until comment})"
625-
},
626-
"Repeat(){}{}": {
627-
"snippet": "Repeat(${3:repeat comment}){${1:end condition}}{${2:repeat block}}"
628-
},
629-
"Repeat{}{}()": {
630-
"snippet": "Repeat{${1:end condition}}{${2:repeat block}}(${3:until comment})"
631-
},
632533
"lRepeat{}{}": {
633534
"snippet": "lRepeat{${1:end condition}}{${2:repeat line}}"
634535
},
635-
"lRepeat(){}{}": {
636-
"snippet": "lRepeat(${3:repeat comment}){${1:end condition}}{${2:repeat line}}"
637-
},
638536
"SetKwInput{}{}": {
639537
"snippet": "SetKwInput{${1:csname}}{${2:name}}"
640538
},

data/packages/babel.json

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"keyvalpos": 0
2626
},
2727
"babeltags{}": {
28-
"snippet": "babeltags{${1:tag1=lang1,${2:tag2=lang2},...}}"
28+
"snippet": "babeltags{${1:tag1=lang1,tag2=lang2,...}}"
2929
},
3030
"babelensure{}": {
3131
"snippet": "babelensure{${1:language}}"
@@ -54,7 +54,7 @@
5454
"snippet": "defineshorthand{${1:shorthand}}{${2:code}}"
5555
},
5656
"defineshorthand[]{}{}": {
57-
"snippet": "defineshorthand[${3:lang1,${4:lang2},...}]{${1:shorthand}}{${2:code}}"
57+
"snippet": "defineshorthand[${3:lang1,lang2,...}]{${1:shorthand}}{${2:code}}"
5858
},
5959
"languageshorthands{}": {
6060
"snippet": "languageshorthands{${1:language}}"
@@ -79,10 +79,10 @@
7979
"snippet": "babelfont{${1:font_family}}[${2:font_options}]{${3:font_name}}"
8080
},
8181
"babelfont[]{}{}": {
82-
"snippet": "babelfont[${3:lang1,${4:lang2},...}]{${1:font_family}}{${2:font_name}}"
82+
"snippet": "babelfont[${3:lang1,lang2,...}]{${1:font_family}}{${2:font_name}}"
8383
},
8484
"babelfont[]{}[]{}": {
85-
"snippet": "babelfont[${3:lang1,${5:lang2},...}]{${1:font_family}}[${4:font_options}]{${2:font_name}}"
85+
"snippet": "babelfont[${3:lang1,lang2,...}]{${1:font_family}}[${4:font_options}]{${2:font_name}}"
8686
},
8787
"setlocalecaption{}{}{}": {
8888
"snippet": "setlocalecaption{${1:language}}{${2:caption_name}}{${3:string}}"
@@ -153,13 +153,13 @@
153153
"snippet": "babelhyphenation{${1:exceptions}}"
154154
},
155155
"babelhyphenation[]{}": {
156-
"snippet": "babelhyphenation[${2:lang1,${3:lang2},...}]{${1:exceptions}}"
156+
"snippet": "babelhyphenation[${2:lang1,lang2,...}]{${1:exceptions}}"
157157
},
158158
"babelpatterns{}": {
159159
"snippet": "babelpatterns{${1:patterns}}"
160160
},
161161
"babelpatterns[]{}": {
162-
"snippet": "babelpatterns[${2:lang1,${3:lang2},...}]{${1:patterns}}"
162+
"snippet": "babelpatterns[${2:lang1,lang2,...}]{${1:patterns}}"
163163
},
164164
"babelposthyphenation{}{}{}": {
165165
"snippet": "babelposthyphenation{${1:hypenrules-name}}{${2:lua-pattern}}{${3:replacement}}"
@@ -308,8 +308,6 @@
308308
"snippet": "AfterBabelCommands{${1:code}}"
309309
},
310310
"allowhyphens": {},
311-
"BabelCJKGlue": {},
312-
"BabelCJKSpace": {},
313311
"BabelDated{}": {
314312
"snippet": "BabelDated{${1:arg}}"
315313
},
@@ -1333,9 +1331,6 @@
13331331
"FBfnindent": {
13341332
"option": "acadian"
13351333
},
1336-
"FBfnmarkspace": {
1337-
"option": "acadian"
1338-
},
13391334
"FBFrenchFootnotesfalse": {
13401335
"option": "acadian"
13411336
},
@@ -1438,9 +1433,6 @@
14381433
"fgii": {
14391434
"option": "acadian"
14401435
},
1441-
"fprimo)": {
1442-
"option": "acadian"
1443-
},
14441436
"frenchdate{}{}{}": {
14451437
"snippet": "frenchdate{${1:day}}{${2:month}}{${3:year}}",
14461438
"option": "acadian"
@@ -1554,6 +1546,9 @@
15541546
"ifFBPartNameFull": {
15551547
"option": "acadian"
15561548
},
1549+
"ifFBReduceListSpacing": {
1550+
"option": "acadian"
1551+
},
15571552
"ifFBShowOptions": {
15581553
"option": "acadian"
15591554
},
@@ -2931,14 +2926,6 @@
29312926
"snippet": "Apageref{${1:label}}",
29322927
"option": "hungarian"
29332928
},
2934-
"aref({})": {
2935-
"snippet": "aref(${2:{${1:label}}})",
2936-
"option": "hungarian"
2937-
},
2938-
"Aref({})": {
2939-
"snippet": "Aref(${2:{${1:label}}})",
2940-
"option": "hungarian"
2941-
},
29422929
"aref*{}": {
29432930
"snippet": "aref*{${1:label}}",
29442931
"option": "hungarian"
Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,11 @@
11
{
22
"includes": {},
33
"macros": {
4-
"framezoom<><>()()": {
5-
"snippet": "framezoom<${1:button overlay specification}><${2:zoomed overlay specification}>(${3:upper left x},${4:upper left y})(${5:zoom area width},${6:zoom area depth})"
6-
},
7-
"framezoom<><>[]()()": {
8-
"snippet": "framezoom<${2:button overlay specification}><${3:zoomed overlay specification}>[${1:options}](${4:upper left x},${5:upper left y})(${6:zoom area width},${7:zoom area depth})",
9-
"keyvalindex": 0,
10-
"keyvalpos": 2
11-
},
124
"insertcontinuationcount": {},
135
"insertcontinuationcountroman": {},
146
"insertcontinuationtext": {}
157
},
168
"envs": {},
179
"options": [],
18-
"keyvals": [
19-
[
20-
"border",
21-
"border=${1:width in pixels}"
22-
]
23-
]
10+
"keyvals": []
2411
}

0 commit comments

Comments
 (0)