Skip to content

Commit 6641304

Browse files
Release v0.1.12 (#14)
* Update array.ts * Update package.json * Update CHANGELOG.md * Update package-lock.json * Update outdated docs * ignore
1 parent e1e1b27 commit 6641304

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
readme-assets/**
44
aiscript/intellisense/**
55
node_modules/**
6+
scripts/**
67
.gitignore
78
*.vsix
89
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "aiscript" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## 0.1.12
8+
- 関数のIntellisenseを追加
9+
- https://github.com/aiscript-dev/aiscript/pull/661 - `[].at()`
10+
711
## 0.1.11
812
- 変数名に`let``var`などが含まれるときにハイライトに失敗する問題を修正
913

README.ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ CHANGELOG.md をご覧ください
3333
$ npm i
3434

3535
# VSCEを使いvsixパッケージ化
36-
$ npx vsce package
36+
$ npx @vscode/vsce package
3737

3838
# もしnpxでうまくいかなければ、以下をお試しください:
39-
$ npm install -g vsce
39+
$ npm install -g @vscode/vsce
4040
$ vsce package
4141
```

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Run:
3535
$ npm i
3636

3737
# Pack into .vsix file using VSCE
38-
$ npx vsce package
38+
$ npx @vscode/vsce package
3939

4040
# (If command above didn't work, try below)
41-
$ npm install -g vsce
41+
$ npm install -g @vscode/vsce
4242
$ vsce package
4343
```

aiscript/intellisense/primitive/array.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default languages.registerCompletionItemProvider('aiscript', {
3535
createCompletionItemKindMethod('flat_map'),
3636
createCompletionItemKindMethod('insert'),
3737
createCompletionItemKindMethod('remove'),
38+
createCompletionItemKindMethod('at'),
3839
];
3940
}
4041
}, '.');

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/aiscript-dev/aiscript-vscode"
99
},
10-
"version": "0.1.11",
10+
"version": "0.1.12",
1111
"engines": {
1212
"vscode": "^1.83.0"
1313
},

0 commit comments

Comments
 (0)