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 #1 from openmainframeproject/development
Browse files Browse the repository at this point in the history
Fix bad property name for view
  • Loading branch information
johnarwe authored Aug 28, 2017
2 parents 86d420f + 4107ce0 commit 5e66b9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.1 - Bug fix
* Toggle command throws an exception due to a publishing typo

## 0.1.0 - First Release
* Highlighting for IBM Script and GML/BookMaster tags and comments. Rather than highly specific highlighting, only the general abstract tag syntax is recognized in most cases... comments, tags, labels.
* Flag nested :annot. as illegal, per the BookMaster manual
Expand Down
2 changes: 1 addition & 1 deletion lib/language-zvm-gml.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = LanguageZvmGml =
activate: (state) ->
@languageZvmGmlView = new LanguageZvmGmlView(state.languageZvmGmlViewState)
@modalPanel = atom.workspace.addModalPanel(item: @languageZvmGmlView.getElement(), visible: false)
@languageArweScriptView.clickToHide(@modalPanel)
@languageZvmGmlView.clickToHide(@modalPanel)

# Events subscribed to in atom's system can be easily cleaned up with a CompositeDisposable
@subscriptions = new CompositeDisposable
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-gml",
"main": "./lib/language-zvm-gml",
"version": "0.1.0",
"version": "0.1.1",
"description": "Syntax highlighting for z/VM SCRIPT files, containing Script and/or BookMaster tags",
"keywords": [
"language",
Expand Down

0 comments on commit 5e66b9a

Please sign in to comment.