diff --git a/CHANGELOG.md b/CHANGELOG.md index ab58cbe..741e9e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,4 @@ * Numbers in scientific notation incorrectly colored * Cent sign is not recognized as a valid name character * Mixing multiline and single-line language elements on a single source line may not be colored correctly, e.g. comment preceding a label. + * Stem variables with numeric stems are colored as if they were a variable and a number diff --git a/NOTICE.md b/NOTICE.md index 235b322..558c344 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -1,4 +1,4 @@ -# language-zvm-names package +# language-zvm-rexx package ### Copyrights diff --git a/README.md b/README.md index 60bc728..c027f10 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # language-zvm-rexx package -Atom editor package that adds language syntax highlighting for z/VM CMS NAMES files. +Atom editor package that adds language syntax highlighting for z/VM Rexx files. ![Screenshot: editing DMSWSXIA EXEC, copied from MAINT 193](https://raw.githubusercontent.com/openmainframeproject/atompkg-language-zvm-rexx/master/Screenshot.PNG) diff --git a/grammars/zvm-rexx-edl.cson b/grammars/zvm-rexx-edl.cson index 664f835..ccf0d34 100644 --- a/grammars/zvm-rexx-edl.cson +++ b/grammars/zvm-rexx-edl.cson @@ -3,7 +3,7 @@ # - Wrote syntax rules to parse development tool add-ons # After editing this file, CTL-SHIFT-F5 or C-S-P window:reload to update the active editor with the revised grammar. -# editor:log-cursor-scope to see which selectors (example: comment.block.names) the grammar applies at the cursor's location. +# editor:log-cursor-scope to see which selectors (example: comment.block.rexx) the grammar applies at the cursor's location. # Separates development tool parameters from the official language definition @@ -18,7 +18,7 @@ }, { # - SID codes (used during the z/VM development process) 'match': '@[A-Z0-9]{7}' - 'name': 'comment.line.sid.names' + 'name': 'comment.line.sid.zvm-rexx-edl' }, ] diff --git a/grammars/zvm-rexx.cson b/grammars/zvm-rexx.cson index e210f0f..535d1ba 100644 --- a/grammars/zvm-rexx.cson +++ b/grammars/zvm-rexx.cson @@ -5,7 +5,7 @@ # z/VM 6.4 CMS Commands and Utilities Reference, NAMEFIND command, usage note 3 # After editing this file, CTL-SHIFT-F5 or C-S-P window:reload to update the active editor with the revised grammar. -# editor:log-cursor-scope to see which selectors (example: comment.block.names) the grammar applies at the cursor's location. +# editor:log-cursor-scope to see which selectors (example: comment.block.rexx) the grammar applies at the cursor's location. # Todo: highlight commas, end parens, etc. Adding a \\b rule really hosed things, no matter its placement.