Skip to content

Commit

Permalink
Fix yaml keywords of NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
weareoutman authored Oct 30, 2024
1 parent 4dc7b06 commit 51534e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/basic-languages/yaml/yaml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const language = <languages.IMonarchLanguage>{
{ token: 'delimiter.square', open: '[', close: ']' }
],

keywords: ['true', 'True', 'TRUE', 'false', 'False', 'FALSE', 'null', 'Null', 'Null', '~'],
keywords: ['true', 'True', 'TRUE', 'false', 'False', 'FALSE', 'null', 'Null', 'NULL', '~'],

numberInteger: /(?:0|[+-]?[0-9]+)/,
numberFloat: /(?:0|[+-]?[0-9]+)(?:\.[0-9]+)?(?:e[-+][1-9][0-9]*)?/,
Expand Down

0 comments on commit 51534e6

Please sign in to comment.