From 8c488ead6f3aeca95fd5109a245f02e962a21ec3 Mon Sep 17 00:00:00 2001 From: tshino Date: Mon, 13 Nov 2023 01:51:22 +0900 Subject: [PATCH 1/3] Update keymap wrapper for Vz Keymap v0.19.11 --- keymap-wrapper/tshino.vz-like-keymap.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/keymap-wrapper/tshino.vz-like-keymap.json b/keymap-wrapper/tshino.vz-like-keymap.json index c8560838..443d5000 100644 --- a/keymap-wrapper/tshino.vz-like-keymap.json +++ b/keymap-wrapper/tshino.vz-like-keymap.json @@ -1,5 +1,5 @@ [ - // Keymap wrapper for Vz Keymap v0.19.10 + // Keymap wrapper for Vz Keymap v0.19.11 // (required by Keyboard Macro Beta) // The latest version can be found at: // https://github.com/tshino/vscode-kb-macro/blob/main/keymap-wrapper/README.md @@ -450,9 +450,9 @@ { "key": "ctrl+m", "command": "kb-macro.wrap", "args": { "command": "breadcrumbs.selectFocused" }, "when": "kb-macro.active && breadcrumbsActive && breadcrumbsVisible && config.vzKeymap.breadcrumbsKeys" }, { "key": "ctrl+e", "command": "kb-macro.wrap", "args": { "command": "history.showPrevious", "await": "selection" }, - "when": "kb-macro.active && historyNavigationBackwardsEnabled && historyNavigationWidgetFocus && !suggestWidgetVisible" }, + "when": "kb-macro.active && historyNavigationBackwardsEnabled && historyNavigationWidgetFocus && !isComposing && !suggestWidgetVisible" }, { "key": "ctrl+x", "command": "kb-macro.wrap", "args": { "command": "history.showNext", "await": "selection" }, - "when": "kb-macro.active && historyNavigationForwardsEnabled && historyNavigationWidgetFocus && !suggestWidgetVisible" }, + "when": "kb-macro.active && historyNavigationForwardsEnabled && historyNavigationWidgetFocus && !isComposing && !suggestWidgetVisible" }, { "key": "ctrl+e", "command": "kb-macro.wrap", "args": { "command": "list.focusUp" }, "when": "kb-macro.active && listFocus && !inputFocus && config.vzKeymap.listViewKeys" }, { "key": "ctrl+x", "command": "kb-macro.wrap", "args": { "command": "list.focusDown" }, From 68313037215c0bff6fc8c803ed8f46c2b7afea79 Mon Sep 17 00:00:00 2001 From: tshino Date: Mon, 13 Nov 2023 01:52:15 +0900 Subject: [PATCH 2/3] Update README --- keymap-wrapper/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keymap-wrapper/README.md b/keymap-wrapper/README.md index 1a66c0a8..dde08183 100644 --- a/keymap-wrapper/README.md +++ b/keymap-wrapper/README.md @@ -22,7 +22,7 @@ Click the keymap wrapper link in the table below, which opens a JSON file. Copy | [Notepad++ Keymap](https://marketplace.visualstudio.com/items?itemName=ms-vscode.notepadplusplus-keybindings) | [link](ms-vscode.notepadplusplus-keybindings.json) | 2023-01-08 | `Ctrl+Shift+R` | `Ctrl+Shift+R` | `Ctrl+Shift+P` | | [Sublime Text Keymap](https://marketplace.visualstudio.com/items?itemName=ms-vscode.sublime-keybindings) | [link](ms-vscode.sublime-keybindings.json) | 2023-01-08 | `Ctrl/Cmd+Q` | `Ctrl/Cmd+Q` | `Ctrl/Cmd+Shift+Q` | | [Visual Studio Keymap](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vs-keybindings) | [link](ms-vscode.vs-keybindings.json) | 2023-01-08 | `Ctrl+M R` | `Ctrl+M R` | `Ctrl+M Enter` | -| [Vz Keymap](https://marketplace.visualstudio.com/items?itemName=tshino.vz-like-keymap) | [link](tshino.vz-like-keymap.json) | 2023-09-07 | `Ctrl+_` | `Ctrl+^` | `Ctrl+^` | +| [Vz Keymap](https://marketplace.visualstudio.com/items?itemName=tshino.vz-like-keymap) | [link](tshino.vz-like-keymap.json) | 2023-11-13 | `Ctrl+_` | `Ctrl+^` | `Ctrl+^` | - Each keyboard shortcut for start/stop recording and playback is assigned to the same ones that the original editor is using, as much as possible. - You can find the definitions of them at the bottom of each keymap wrapper file (find the `startRecording` command etc.). You can customize them as you like. From a67d1fb601cbe72a6bf0653b41ef25f9610ee4e5 Mon Sep 17 00:00:00 2001 From: tshino Date: Tue, 14 Nov 2023 00:25:10 +0900 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ac517a..987cf9eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Keyboard Macro Bata extension will be documented in this file. +### [Unreleased] +- Update + - Updated keymap wrapper for Vz Keymap (v0.19.11). [#314](https://github.com/tshino/vscode-kb-macro/pull/314) + ### [0.13.10] - 2023-11-06 - Update - Updated default keybindings wrappers based on vscode 1.84.0 [#310](https://github.com/tshino/vscode-kb-macro/pull/310)