From 27c073c613957790a01ffe515aeca818eb25b77d Mon Sep 17 00:00:00 2001 From: Ryuichi Inagaki Date: Sun, 4 Jun 2017 01:30:17 +1000 Subject: [PATCH] ref #7 Updated README and Changelog --- CHANGELOG.md | 4 ++++ README.md | 5 +++++ package.json | 10 +++++----- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbfaa1b..65224d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ +### 0.7.0: 3 June 2017 + +* Support "whole match" text matching ([Issue #7](https://github.com/ryu1kn/vscode-text-marker/issues/7)) + ### 0.6.1: 2 June 2017 * Fixed the problem that the symbols for representing the current mode for case sensitivity were used in reverse diff --git a/README.md b/README.md index e993e03..d17c4cc 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ * 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. +* Whole/Partial text matching * Highlighting colour is configurable ![Highlight and unhighlight text](https://raw.githubusercontent.com/ryu1kn/vscode-text-marker/master/images/animations/highlight-unhighlight-texts.gif) @@ -38,6 +39,10 @@ Toggle mode for case sensitivity +* `Toggle Whole/Partial Match` (**Command ID**: `textmarker.toggleWholeMatch`) + + Toggle whole match and partial match + * `(DEPRECATED) Mark Text to Highlight/Unhighlight` (**Command ID**: `textmarker.markText`) Mark the selected text for highlighting. If no text is selected, the word under cursor will be marked. Marking the already selected text will unhighlight the text. diff --git a/package.json b/package.json index aa942ec..4c52879 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "text-marker", "displayName": "Text Marker", "description": "Select text in your code and mark all matches. The marking colour is configurable", - "version": "0.6.1", + "version": "0.7.0", "publisher": "ryu1kn", "license": "SEE LICENSE IN LICENSE.txt", "icon": "images/text-marker.png", @@ -90,13 +90,13 @@ "category": "TextMarker" }, { - "command": "textmarker.toggleWholeMatch", - "title": "Toggle Partial/Whole Match", + "command": "textmarker.toggleModeForCaseSensitivity", + "title": "Toggle Mode for Case Sensitivity", "category": "TextMarker" }, { - "command": "textmarker.toggleModeForCaseSensitivity", - "title": "Toggle Mode for Case Sensitivity", + "command": "textmarker.toggleWholeMatch", + "title": "Toggle Whole/Partial Match", "category": "TextMarker" }, {