From d54b48c00101649f45bc9ae800515f2dd82a9256 Mon Sep 17 00:00:00 2001 From: Ryuichi Inagaki Date: Sun, 5 Aug 2018 23:27:22 +1000 Subject: [PATCH] ref #14 Bump up version to v1.4.0 --- CHANGELOG.md | 4 ++++ README.md | 13 +++++++++++++ package.json | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95da8a0..522aad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 89c6f24..9e6d92e 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. diff --git a/package.json b/package.json index 11ef0d8..b4d98f4 100644 --- a/package.json +++ b/package.json @@ -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",