Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #5 from gordhub/issue3
Browse files Browse the repository at this point in the history
Update grammars/zvm-asm.cson
  • Loading branch information
johnarwe authored Feb 15, 2019
2 parents 7d89068 + c27de51 commit f192b34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
## 0.2.1 - Recognize z/OS UNIX Assembler files
* ASM: include file type 's' in the list of file types associated with ASM.

## 0.2.0 - Incremental improvements based on usage
* PLX: treat @logic/endlogic as multiline comments
* PLX: Apply highlighting to macro files too
* PLX: When highlighting BIFs like Length(), highlight the name only (was highlighting the open paren too)
* PLX: Many new snippets to insert common constructs like If, Select
* PLX: Many new snippets to insert common constructs like If, Select

## 0.1.0 - First Release
* Basic assembler and PL/x syntax highlighting. Plenty of TODOs in the grammar files. Not all of them can be implemented given Atom's restrictions on hightlighters, which in some cases conflict with the language definitions.
2 changes: 1 addition & 1 deletion grammars/zvm-asm.cson
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

'scopeName': 'source.zvmasm'
'name': 'z/VM assembler'
'fileTypes': ['ASM', 'asm','assemble','macro','repos']
'fileTypes': ['ASM', 'asm','assemble','macro','repos','s']

'patterns': [
{ 'include': '#line-too-long-rule' },
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "language-zvm-asm",
"main": "./lib/language-zvm-asm",
"version": "0.2.0",
"version": "0.2.1",
"description": "Syntax highlighting for z/VM assembler language files",
"keywords": [
"language",
Expand Down

0 comments on commit f192b34

Please sign in to comment.