Skip to content

Commit af9da88

Browse files
authored
Merge pull request #5 from docs/hubwriter/key-bindings-fix
Fix keybindings for Windows
2 parents 3a47645 + cb0682a commit af9da88

5 files changed

+10
-114
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 1.0.2
4+
24 January 2024
5+
6+
- Fixed the keybindings for Windows. These are now `alt + j` for the toast popup and `shift + alt + j` for the modal popup.
7+
38
## 1.0.1
49
16 January 2024
510

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ There are options for how you want the message to be displayed. You can show the
1818

1919
To use the extension, either:
2020
- Use a keypress:
21-
- For the "toast" message, press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>v</kbd> (Windows/Linux) or <kbd>control</kbd>+<kbd>command</kbd>+<kbd>v</kbd> (Mac)
22-
- For the modal popup, press <kbd>Shift</kbd>+<kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>v</kbd> (Windows/Linux) or <kbd>Shift</kbd>+<kbd>control</kbd>+<kbd>command</kbd>+<kbd>v</kbd> (Mac)
21+
- For the "toast" message, press <kbd>Alt</kbd>+<kbd>j</kbd> (Windows/Linux) or <kbd>control</kbd>+<kbd>command</kbd>+<kbd>v</kbd> (Mac)
22+
- For the modal popup, press <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>j</kbd> (Windows/Linux) or <kbd>Shift</kbd>+<kbd>control</kbd>+<kbd>command</kbd>+<kbd>v</kbd> (Mac)
2323
- Go to the Command Palette (<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>p</kbd> (Windows/Linux) or <kbd>Shift</kbd>+<kbd>command</kbd>+<kbd>p</kbd> (Mac)), type `version` and select either **Versioning identification (Toast)** or **Versioning identification (Modal)**.
2424

2525
The extension highlights each set of tags that affects the current cursor position in a different color. In this example, the cursor is in the word "series" on line 112. The text at that point is within a set of tags that's nested within another tag set, that's also nested. So three sets of tags are highlighted. The "toast" popup describes the versioning.

package-new.json

-109
This file was deleted.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Versioning Identifier",
44
"description": "Highlight the Liquid versioning that applies at any point within a Markdown file.",
55
"icon": "images/versioning-identifier-logo-128px.png",
6-
"version": "1.0.1",
6+
"version": "1.0.2",
77
"publisher": "AlistairChristie",
88
"license": "See the LICENSE file",
99
"keywords": [
@@ -39,13 +39,13 @@
3939
"keybindings": [
4040
{
4141
"command": "version-identifier.runExtensionToast",
42-
"key": "ctrl+cmd+v",
42+
"key": "alt+j",
4343
"mac": "ctrl+cmd+v",
4444
"when": "editorTextFocus"
4545
},
4646
{
4747
"command": "version-identifier.runExtensionModal",
48-
"key": "shift+ctrl+cmd+v",
48+
"key": "shift+alt+j",
4949
"mac": "shift+ctrl+cmd+v",
5050
"when": "editorTextFocus"
5151
},

version-identifier-1.0.2.vsix

2.23 MB
Binary file not shown.

0 commit comments

Comments
 (0)