Skip to content

Commit e4400de

Browse files
committed
Changed the mode name to 'sysml' from 'clike'
1 parent 2cfc3e7 commit e4400de

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tool-support/syntax-highlighting/jupyter/mode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { clike } from '@codemirror/legacy-modes/mode/clike';
2828

2929
const f_wordify = (h: any, s: string) => ({...h, [s]: true});
3030
export const sysmlparser = clike({
31-
name: 'clike',
31+
name: 'sysml',
3232
keywords: [
3333
"about", "abstract", "accept", "action", "actor", "after", "alias", "all", "allocate", "allocation",
3434
"analysis", "and", "as", "assert", "assign", "assume", "at", "attribute", "bind", "binding", "by",

tool-support/syntax-highlighting/jupyter/mode_template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { clike } from '@codemirror/legacy-modes/mode/clike';
2828

2929
const f_wordify = (h: any, s: string) => ({...h, [s]: true});
3030
export const sysmlparser = clike({
31-
name: 'clike',
31+
name: 'sysml',
3232
keywords: [
3333
"$KEYWORDS"
3434
].reduce(f_wordify, {}),

0 commit comments

Comments
 (0)