Skip to content
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.

Highlight function definitions better #79

Merged
merged 1 commit into from Jan 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tcl/tcl.ts
Expand Up @@ -153,7 +153,7 @@ export const language = <ILanguage>{
specialFunc: [
[/"/, {token: 'string', next: '@dstring'}],
[/'/, {token: 'string', next: '@sstring'}],
[/(?:(?:\:\:?)?[a-zA-Z_]\w*)+/, {token: 'type', next: '@pop'}],
[/\S+/, {token: 'type', next: '@pop'}],
]
}
};