Skip to content

Commit

Permalink
ref #14 Bump up version to v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryu1kn committed Aug 5, 2018
1 parent c4ae914 commit d54b48c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to "Text Marker (Highlighter)" extension will be documented
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.4.0] - 2018-08-05
### Added
- Feature to jump to next/previous location of the same highlight. [#14](https://github.com/ryu1kn/vscode-text-marker/issues/14)

## [1.3.1] - 2018-07-22
### Fixed
- Fixed the issue that a string pattern highlight could not be toggled off by selecting the exact same text.
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

* Highlight/Unhighlight text from both command palette or right-click menu
* Update existing highlight rules from the right-click menu
* Jump to the next/previous location of the same highlighted pattern
* Highlight text using a regular expression
* Case sensitive/insensitive text matching
* Matching is done depending on the current mode for case sensitivity. You can toggle the mode from the status bar.
Expand Down Expand Up @@ -41,6 +42,18 @@ You can update a highlight rule after you set it.
Update the existing highlight (Toggle case sensitivity, whole/partial match, pattern text).
Available on right-click menu.

* `Go to Next Same Highlight` (**Command ID**: `textmarker.goToNextHighlight`)

Move the cursor to the next location of the same highlight. Highlight selection or the word under cursor
first if the cursor is not on a highlight.
Available on right-click menu.

* `Go to Previous Same Highlight` (**Command ID**: `textmarker.goToPreviousHighlight`)

Move the cursor to the previous location of the same highlight. Highlight selection or the word under cursor
first if the cursor is not on a highlight.
Available on right-click menu.

* `Highlight Text Using Regex` (**Command ID**: `textmarker.highlightUsingRegex`)

Highlight text that matches a given regular expression.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "text-marker",
"displayName": "Text Marker (Highlighter)",
"description": "Select text in your code and mark all matches. The highlight colour is configurable",
"version": "1.3.1",
"version": "1.4.0",
"publisher": "ryu1kn",
"license": "SEE LICENSE IN LICENSE.txt",
"icon": "images/text-marker.png",
Expand Down

0 comments on commit d54b48c

Please sign in to comment.