From 6a59a4e8cb8fb334a02057715f2c88f34b215983 Mon Sep 17 00:00:00 2001 From: Alison Winters Date: Thu, 29 Feb 2024 19:16:59 +0800 Subject: [PATCH 1/3] update version --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8b92b00..dd11434 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "amvim", - "version": "1.37.0", + "version": "1.37.1-pre", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "amvim", - "version": "1.37.0", + "version": "1.37.1-pre", "license": "ISC", "devDependencies": { "@types/mocha": "^10.0.6", diff --git a/package.json b/package.json index bfb368c..4b013ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amvim", - "version": "1.37.0", + "version": "1.37.1-pre", "publisher": "auiworks", "icon": "images/icon.png", "displayName": "amVim", From a91ff861698f9bc9c6daeb4183139d7714fb7a4e Mon Sep 17 00:00:00 2001 From: Alison Winters Date: Thu, 29 Feb 2024 19:18:06 +0800 Subject: [PATCH 2/3] remove unused lint config --- tslint.json | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 tslint.json diff --git a/tslint.json b/tslint.json deleted file mode 100644 index ed929e8..0000000 --- a/tslint.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "rules": { - "class-name": true, - "comment-format": [ - true, - "check-space" - ], - "indent": [ - true, - "spaces" - ], - "no-duplicate-variable": true, - "no-eval": true, - "no-internal-module": true, - "no-trailing-whitespace": true, - "no-var-keyword": true, - "one-line": [ - true, - "check-open-brace", - "check-whitespace" - ], - "semicolon": [ - true, - "always" - ], - "triple-equals": [ - true, - "allow-null-check" - ], - "typedef-whitespace": [ - true, - { - "call-signature": "nospace", - "index-signature": "nospace", - "parameter": "nospace", - "property-declaration": "nospace", - "variable-declaration": "nospace" - } - ], - "variable-name": [ - true, - "ban-keywords" - ], - "whitespace": [ - true, - "check-branch", - "check-decl", - "check-operator", - "check-separator", - "check-type" - ] - } -} From 75ac7ec53af9396035ab256d158567ff5c038fdc Mon Sep 17 00:00:00 2001 From: Alison Winters Date: Thu, 29 Feb 2024 19:30:12 +0800 Subject: [PATCH 3/3] add missing changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87e0188..065060d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # [1.37.0](https://github.com/aioutecism/amVim-for-VSCode/releases/tag/1.37.0) +- Allow up/down arrows to navigate suggest widget in normal mode: #319 Thanks @notiv-nt! - Update dependencies and clean up the test infrastructure somewhat. - Add a 2ms delay to selection change recalculations to try reduce cursor placement issues with `o` and other commands #308 #317