Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
layout node
export GIT_DIR=$PWD/.jj/repo/store/git
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ node_modules
*.vsix
/abs/out/
/abs/.vscode-test
/notes.org
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ two items to `abs.compileOptions`: `-jar` and `/path/to/absfrontend.jar`.

## Installing

To install the latest released version, download the `.vsix` file from https://github.com/abstools/abs-vs-code/releases/latest (currently `abs-0.0.7.vsix`).
To install the latest released version, download the `.vsix` file from https://github.com/abstools/abs-vs-code/releases/latest (currently `abs-0.0.8.vsix`).

### Installing from the Command Line

Run `code --install-extension abs-0.0.7.vsix`
Run `code --install-extension abs-0.0.8.vsix`

### Installing from inside Visual Studio Code

Expand All @@ -38,7 +38,7 @@ Run `code --install-extension abs-0.0.7.vsix`
<img alt="First click 'Extensions', then the horizontal dots menu at the top of the list, then 'Install from VSIX...'" src="images/installing.png">
</picture>

3. In the file browser, choose the `abs-0.0.7.vsix` file downloaded from https://github.com/abstools/abs-vs-code/releases/latest .
3. In the file browser, choose the `abs-0.0.8.vsix` file downloaded from https://github.com/abstools/abs-vs-code/releases/latest .

### Running an unreleased version

Expand Down
4 changes: 4 additions & 0 deletions abs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ file from inside the editor.

## Release Notes

### 0.0.8

- Add snippets for `map`, `filter`, `foldl`, `foldr`.

### 0.0.7

- Fix ABS compilation command.
Expand Down
603 changes: 290 additions & 313 deletions abs/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion abs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "ABS",
"description": "Support for the Abs language",
"icon": "images/ABS_logo.png",
"version": "0.0.7",
"version": "0.0.8",
"publisher": "abs-models-org",
"author": {
"name": "Rudolf Schlatte"
Expand Down
Loading