diff --git a/CHANGELOG.md b/CHANGELOG.md index f9b7f4a..bd7ff79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ - ... +## [1.0.1] -- 2022-12-09 + +### Added + +- Tags for Marketplace discoverability. +- A few more tests. + +### Changed + +- Replaced `Past` by `To` in all command titles for better discoverability. + ## [1.0.0] -- 2022-12-08 ### Added diff --git a/README.md b/README.md index 5aa824a..3763992 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ This extension contributes the following settings: ## Quirks, Technical Details and Known Issues -See [integration tests `Extension Test Suite`](src/test/suite/extension.test.ts) for diverse behavior examples. +See [integration tests `Extension Test Suite`](src/test/suite/extension.test.ts) for diverse behavior examples. In tests, the character `@` stands for initial cursor position, and `^` for resulting cursor position. Currently, multiple cursors are not supported. @@ -160,7 +160,7 @@ Coming from Emacs, I appreciate and suggest: ## Release Notes -See the ![changelog file](CHANGELOG.md) for a detailed list of features and changes! +See the ![changelog file](./CHANGELOG.md) for a detailed list of features and changes! The main features that are still missing are multiple cursors support and multicharacter delimiters support. @@ -179,3 +179,7 @@ Initial release of Navi Parens. * Bug fixes. No, this time for real. Better test coverage with enforced tests. * Make the Navi-Parens-bound "move past next/previous word" consistently move past an alphanumeric word, rather than using the built-in `ctrl+rightArrow` / `ctrl+leftArrow` functionality. + +### 1.0.1 + +* Marketplace tags for more discoverability. \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 85867ec..be3bcd6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "navi-parens", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "navi-parens", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "devDependencies": { "@types/glob": "^8.0.0", diff --git a/package.json b/package.json index cb54f24..4dfd5ee 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "displayName": "Navi Parens", "description": "Navigate structured code with convenient key shortcuts.", "icon": "iconSmall.png", - "version": "1.0.0", + "version": "1.0.1", "engines": { "vscode": "^1.73.0" }, @@ -12,6 +12,7 @@ "Keymaps", "Other" ], + "keywords": ["structure", "jump", "navigation", "Emacs", "selection"], "license": "MIT", "repository": { "type": "git", @@ -89,13 +90,13 @@ }, { "command": "navi-parens.goPastPreviousWord", - "title": "Go Past Previous Word: Go to the beginning of the current/previous word", - "shortTitle": "Go Past Previous Word" + "title": "Go To Previous Word: Go to the beginning of the current/previous word", + "shortTitle": "Go To Previous Word" }, { "command": "navi-parens.goPastNextWord", - "title": "Go Past Next Word: Go to the end of the current/next word", - "shortTitle": "Go Past Next Word" + "title": "Go To Next Word: Go to the end of the current/next word", + "shortTitle": "Go To Next Word" }, { "command": "navi-parens.selectPastNextScope", @@ -139,13 +140,13 @@ }, { "command": "navi-parens.selectPastPreviousWord", - "title": "Select Past Previous Word: select to the beginning of the previous word", - "shortTitle": "Select Past Previous Word" + "title": "Select To Previous Word: select to the beginning of the previous word", + "shortTitle": "Select To Previous Word" }, { "command": "navi-parens.selectPastNextWord", - "title": "Select Past Next Word: select to the end of the next word", - "shortTitle": "Select Past Next Word" + "title": "Select To Next Word: select to the end of the next word", + "shortTitle": "Select To Next Word" }, { "command": "navi-parens.cycleBracketScopeMode",