Skip to content

Commit

Permalink
ref #7 Updated README and Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ryu1kn committed Jun 3, 2017
1 parent 1d1f79b commit 27c073c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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.
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
},
{
Expand Down

0 comments on commit 27c073c

Please sign in to comment.