From 94da2b80d50eb81b2b33f4d3c918e2b4dfb9ed88 Mon Sep 17 00:00:00 2001 From: James Harris Date: Thu, 29 Dec 2016 04:14:19 +0000 Subject: [PATCH] Bump version --- README.md | 30 ++++++++++++++++++++++-------- package.json | 2 +- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 92e597f..81de51a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Based on [AGC Assembly][3] for Sublime Text. ## Installation -### [Marketplace][3] +### [Marketplace][6] - Launch VS Code Quick Open (Ctrl+P) - Input `ext install agc-assembly` @@ -37,21 +37,34 @@ Based on [AGC Assembly][3] for Sublime Text. - Navigate to VSIX binary - Reload VS Code -## Extension Settings +## Suggested Settings -Included are suggested settings files for the three supported filetypes. Current [VirtualAGC][1] project conventions are to use hard tabs every 8 columns when entering source. -``` +### AGC, AGS & Binsource +```json { - "editor.tabSize": 8, - "editor.insertSpaces": false, "editor.detectIndentation": false, - "editor.acceptSuggestionOnEnter": false, + "editor.insertSpaces": false, "editor.tabCompletion": false, + "editor.tabSize": 8, + "editor.trimAutoWhitespace": true, "editor.useTabStops": true, + "editor.wordSeparators": " ", + "files.trimTrailingWhitespace": true, +} +``` +### Argus +```json +{ + "editor.detectIndentation": false, + "editor.insertSpaces": true, + "editor.rulers": [1, 8, 19, 32, 46, 60, 75, 80, 120], + "editor.tabCompletion": false, + "editor.tabSize": 8, "editor.trimAutoWhitespace": true, - "files.trimTrailingWhitespace": true + "editor.useTabStops": true, + "files.trimTrailingWhitespace": true, } ``` @@ -77,6 +90,7 @@ $ npm start [3]:https://github.com/jimlawton/AGC-Assembly [4]:https://nodejs.org/en/ [5]:https://www.npmjs.com/ +[6]:https://marketplace.visualstudio.com/items?itemName=wopian.agc-assembly ## Release Notes diff --git a/package.json b/package.json index 1e52313..5b2a181 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "agc-assembly", "displayName": "AGC Assembly", - "version": "0.0.2", + "version": "0.0.3", "description": "Syntax-highlighting for Apollo Guidance Computer (AGC) assembly source code", "engines": { "vscode": "^1.5.0",