Skip to content

Commit

Permalink
Close #4202 Update cwls
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Yu committed Mar 14, 2024
1 parent d45d9f6 commit 28892b8
Show file tree
Hide file tree
Showing 12 changed files with 386 additions and 39 deletions.
22 changes: 20 additions & 2 deletions data/packages/babel.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@
"getlocaleproperty*{}{}{}": {
"snippet": "getlocaleproperty*{${1:cmd}}{${2:locale}}{${3:property}}"
},
"ShowLocaleProperties{}": {
"snippet": "ShowLocaleProperties{${1:language}}"
},
"LocaleForEach{}": {
"snippet": "LocaleForEach{${1:code}}"
},
Expand Down Expand Up @@ -200,6 +203,9 @@
"disablelocaleinterchar{}": {
"snippet": "disablelocaleinterchar{${1:label}}"
},
"IfBabelIntercharT{}{}": {
"snippet": "IfBabelIntercharT{${1:interchar-list}}{${2:code}}"
},
"ensureascii{}": {
"snippet": "ensureascii{${1:text}}"
},
Expand Down Expand Up @@ -1838,6 +1844,18 @@
"ck": {
"option": "uppersorbian"
},
"ifcapsz": {
"option": "swissgerman"
},
"capsztrue": {
"option": "swissgerman"
},
"capszfalse": {
"option": "swissgerman"
},
"mkngender": {
"option": "swissgerman"
},
"captionsaustrian": {
"option": "austrian"
},
Expand Down Expand Up @@ -4479,7 +4497,6 @@
"headfoot=${1:language}",
"noconfigs",
"showlanguages",
"nocase",
"silent",
"hyphenmap=",
"bidi=",
Expand Down Expand Up @@ -4541,7 +4558,8 @@
"mapdigits",
"calendar=${1:calendar}",
"calendar=${1:calendar}.${2:variant}",
"casing="
"casing=",
"interchar=${1:interchar-list}"
],
[
"calendar=${1:calendar}",
Expand Down
36 changes: 11 additions & 25 deletions data/packages/class-memoir.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"textcase": [],
"etoolbox": [],
"xpatch": [],
"nameref": []
"nameref": [],
"verbatim": [],
"shortvrb": []
},
"macros": {
"abnormalparskip{}": {
Expand Down Expand Up @@ -685,9 +687,6 @@
"deleted{}": {
"snippet": "deleted{${1:change-id}}"
},
"DeleteShortVerb{}": {
"snippet": "DeleteShortVerb{${1:\\character}}"
},
"DisemulatePackage{}": {
"snippet": "DisemulatePackage{${1:package}}"
},
Expand Down Expand Up @@ -1159,9 +1158,6 @@
"makerunningwidth{}[]{}": {
"snippet": "makerunningwidth{${1:pagestyle}}[${2:footwidth}]{${3:headwidth}}"
},
"MakeShortVerb{}": {
"snippet": "MakeShortVerb{${1:\\character}}"
},
"makesidefootmark{}": {
"snippet": "makesidefootmark{${1:text}}"
},
Expand Down Expand Up @@ -2230,7 +2226,6 @@
"snippet": "setulmarginsandblock{${1:upper}}{${2:lower}}{${3:ratio}}"
},
"setupcomment": {},
"setverbatimbreak": {},
"setverbatimfont{}": {
"snippet": "setverbatimfont{${1:font}}"
},
Expand Down Expand Up @@ -2458,11 +2453,6 @@
},
"symbolthanksmark": {},
"tablerefname": {},
"tabsoff": {},
"tabson": {},
"tabson[]": {
"snippet": "tabson[${1:number}]"
},
"tamark": {},
"teennumbername{}": {
"snippet": "teennumbername{${1:arg}}"
Expand Down Expand Up @@ -2597,14 +2587,6 @@
"uppercaseheads": {},
"uppermargin": {},
"usethanksrule": {},
"verbatimbreakchar": {},
"verbatimindent": {},
"verbatiminput{}": {
"snippet": "verbatiminput{${1:file}}"
},
"verbatiminput*{}": {
"snippet": "verbatiminput*{${1:file}}"
},
"verbfootnote": {},
"verselinebreak": {},
"verselinebreak[]": {
Expand All @@ -2626,12 +2608,16 @@
"vleftskip": {},
"vlvnumfont": {},
"vrightskip": {},
"wrappingoff": {},
"wrappingon": {},
"wrapright": {},
"xindyindex": {},
"xlvchars": {},
"zerotrivseps": {}
"zerotrivseps": {},
"tabsoff": {},
"tabson": {},
"setverbatimbreak": {},
"verbatimbreakchar": {},
"wrappingoff": {},
"wrappingon": {},
"wrapright": {}
},
"envs": {
"adjustwidth*{}{}": {
Expand Down
18 changes: 18 additions & 0 deletions data/packages/fancyvrb.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@
"keyvalindex": 0,
"keyvalpos": 0
},
"VerbatimInput*{}": {
"snippet": "VerbatimInput*{${1:file}}"
},
"VerbatimInput*[]{}": {
"snippet": "VerbatimInput*[${2:options}]{${1:file}}"
},
"BVerbatimInput{}": {
"snippet": "BVerbatimInput{${1:file}}"
},
Expand All @@ -171,12 +177,24 @@
"keyvalindex": 2,
"keyvalpos": 0
},
"BVerbatimInput*{}": {
"snippet": "BVerbatimInput*{${1:file}}"
},
"BVerbatimInput*[]{}": {
"snippet": "BVerbatimInput*[${2:options}]{${1:file}}"
},
"LVerbatimInput{}": {
"snippet": "LVerbatimInput{${1:file}}"
},
"LVerbatimInput[]{}": {
"snippet": "LVerbatimInput[${2:options}]{${1:file}}"
},
"LVerbatimInput*{}": {
"snippet": "LVerbatimInput*{${1:file}}"
},
"LVerbatimInput*[]{}": {
"snippet": "LVerbatimInput*[${2:options}]{${1:file}}"
},
"FancyVerbAfterSave": {},
"FancyVerbCodes": {},
"FancyVerbDefineActive": {},
Expand Down
11 changes: 3 additions & 8 deletions data/packages/fontspec.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"includes": {
"xunicode": [
"euenc"
]
},
"includes": {},
"macros": {
"liningnums{}": {
"snippet": "liningnums{${1:text}}"
Expand Down Expand Up @@ -340,14 +336,13 @@
"strongenv": {}
},
"options": [
"tuenc",
"euenc",
"math",
"no-math",
"config",
"no-config",
"quiet",
"silent"
"silent",
"verbose"
],
"keyvals": []
}
1 change: 0 additions & 1 deletion data/packages/hyperref.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"kvdefinekeys": [],
"pdfescape": [],
"hycolor": [],
"letltxmacro": [],
"auxhook": [],
"kvoptions": [],
"intcalc": [],
Expand Down
3 changes: 3 additions & 0 deletions data/packages/latex-document.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
"snippet": "circle*{${1:diameter}}"
},
"columnwidth": {},
"contentsline{}{}{}{}": {
"snippet": "contentsline{${1:type}}{${2:text}}{${3:page}}{${4:Href}}"
},
"contentsname": {},
"date{}": {
"snippet": "date{${1:text}}"
Expand Down
1 change: 1 addition & 0 deletions data/packages/minted.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
"gobble=${1:int}",
"highlightcolor=",
"highlightlines=${1:list of lineno ranges}",
"ignorelexererrors",
"keywordcase=",
"label=${1:string}",
"labelposition=",
Expand Down
Loading

0 comments on commit 28892b8

Please sign in to comment.