Skip to content

Commit

Permalink
docs: include file size
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Dec 21, 2023
1 parent 57cd072 commit aee86b8
Show file tree
Hide file tree
Showing 10 changed files with 451 additions and 229 deletions.
362 changes: 181 additions & 181 deletions packages/tm-grammars/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/tm-grammars/grammars/vhdl.json
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@
"keywords": {
"patterns": [
{
"match": "'(?i:active|ascending|base|delayed|driving|event|high|image|instance|instance_name|last|last_value|left|leftof|length|low|path|path_name|pos|pred|quiet|range|reverse|reverse_range|right|rightof|simple|simple_name|stable|succ|transaction|val|value)\\b",
"match": "'(?i:active|ascending|base|delayed|driving|driving_value|event|high|image|instance|instance_name|last|last_value|left|leftof|length|low|path|path_name|pos|pred|quiet|range|reverse|reverse_range|right|rightof|simple|simple_name|stable|succ|transaction|val|value)\\b",
"name": "keyword.attributes.vhdl"
},
{
Expand Down
3 changes: 2 additions & 1 deletion packages/tm-grammars/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export type GrammarCategory = 'web' | 'markup' | 'general' | 'scripting' | 'data

export interface GrammarInfo {
name: string
displayName?: string
displayName: string
categories?: GrammarCategory[]
scopeName: string
source: string
Expand All @@ -12,6 +12,7 @@ export interface GrammarInfo {
sha?: string
embedded?: string[]
embeddedIn?: string[]
byteSize: number
}

const grammars: GrammarInfo[]
Expand Down
Loading

0 comments on commit aee86b8

Please sign in to comment.