Skip to content

Commit

Permalink
Merge pull request #146 from tshino/fix-verify-wrapper
Browse files Browse the repository at this point in the history
Fix verify_wrapper.js
  • Loading branch information
tshino authored Sep 3, 2022
2 parents 6373c69 + 9a6f075 commit f443ff8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Keyboard Macro Bata extension will be documented in this file.

## [Unreleased]
- Internal:
- Fixed: Failure in automated workflow to update default keybindings wrappers. [#145](https://github.com/tshino/vscode-kb-macro/issues/145)

### [0.12.5] - 2022-08-28
- Fix
- Fixed: `ctrl+shift+f` fails to focus Search in recording mode. [#142](https://github.com/tshino/vscode-kb-macro/issues/142)
Expand Down
1 change: 1 addition & 0 deletions generator/verify_wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const joinComplementalKeybindings = function(keybindings) {
k1.mac === k2.mac &&
k1.command === k2.command &&
k1.args && k2.args &&
'await' in k1.args && 'await' in k2.args &&
k1.args.command === k2.args.command) {
const w1 = k1.when;
const w2 = k2.when;
Expand Down

0 comments on commit f443ff8

Please sign in to comment.