Skip to content

Commit

Permalink
Marketplace tags, Past->To in titles, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lukstafi committed Dec 9, 2022
1 parent d112312 commit a7b807b
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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.

Expand All @@ -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.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
"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"
},
"categories": [
"Keymaps",
"Other"
],
"keywords": ["structure", "jump", "navigation", "Emacs", "selection"],
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit a7b807b

Please sign in to comment.