Skip to content

Commit

Permalink
Merge pull request #97 from tshino/update-awesome-emacs-keymap-0.43.1
Browse files Browse the repository at this point in the history
Update keymap wrapper for Awesome Emacs Keymap (v0.43.1)
  • Loading branch information
tshino authored Apr 29, 2022
2 parents bb05af8 + 9ebfd8f commit fee6e67
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to the Keyboard Macro Bata extension will be documented in t
- Update default keybindings wrappers based on vscode 1.66.1. [#93](https://github.com/tshino/vscode-kb-macro/pull/93)
- Update default keybindings wrappers based on vscode 1.66.2. [#95](https://github.com/tshino/vscode-kb-macro/pull/95)
- Updated keymap wrapper for Vz Keymap (v0.19.0). [#96](https://github.com/tshino/vscode-kb-macro/pull/96)
- Updated Keymap wrapper for Awesome Emacs Keymap (v0.43.1). [#97](https://github.com/tshino/vscode-kb-macro/pull/97)

### [0.12.0] - 2022-04-05
- Feature
Expand Down
2 changes: 1 addition & 1 deletion keymap-wrapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Click the keymap wrapper link in the table below, which opens a JSON file. Copy
| Keymap extension | Keymap wrapper | Last updated | Start recording | Stop recording | Playback |
| ---------------- | -------------- | ------------ | ---------- | --------- | -------- |
| [Atom Keymap](https://marketplace.visualstudio.com/items?itemName=ms-vscode.atom-keybindings) | [link](ms-vscode.atom-keybindings.json) | 2022-04-05 | `Ctrl+Alt+R` | `Ctrl+Alt+R` | `Ctrl+Alt+P` |
| [Awesome Emacs Keymap](https://marketplace.visualstudio.com/items?itemName=tuttieee.emacs-mcx) | [link](tuttieee.emacs-mcx.json) | 2022-04-05 | `C-x S-9` | `C-x S-0` | `C-x e` |
| [Awesome Emacs Keymap](https://marketplace.visualstudio.com/items?itemName=tuttieee.emacs-mcx) | [link](tuttieee.emacs-mcx.json) | 2022-04-30 | `C-x S-9` | `C-x S-0` | `C-x e` |
| [Delphi Keymap](https://marketplace.visualstudio.com/items?itemName=alefragnani.delphi-keybindings) | [link](alefragnani.delphi-keybindings.json) | 2022-04-05 | `Ctrl/Cmd+Shift+R` | `Ctrl/Cmd+Shift+R` | `Ctrl/Cmd+Shift+P` |
| [Notepad++ Keymap](https://marketplace.visualstudio.com/items?itemName=ms-vscode.notepadplusplus-keybindings) | [link](ms-vscode.notepadplusplus-keybindings.json) | 2021-12-26 | `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) | 2021-12-21 | `Ctrl/Cmd+Q` | `Ctrl/Cmd+Q` | `Ctrl/Cmd+Shift+Q` |
Expand Down
2 changes: 1 addition & 1 deletion keymap-wrapper/tuttieee.emacs-mcx.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"base": {
"type": "url",
"url": "https://github.com/whitphx/vscode-emacs-mcx/raw/v0.41.2/package.json"
"url": "https://github.com/whitphx/vscode-emacs-mcx/raw/v0.43.1/package.json"
},
"awaitOptions": [
[ "emacs-mcx.forwardChar", "selection" ],
Expand Down
6 changes: 5 additions & 1 deletion keymap-wrapper/tuttieee.emacs-mcx.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[
// Keymap wrapper for Awesome Emacs Keymap v0.41.2
// Keymap wrapper for Awesome Emacs Keymap v0.43.1
// (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
Expand Down Expand Up @@ -1555,6 +1555,10 @@
"when": "kb-macro.recording && !terminalFocus" },
{ "key": "ctrl+i", "command": "kb-macro.wrap", "args": { "command": "tab" },
"when": "kb-macro.recording" },
{ "key": "ctrl+x left", "command": "kb-macro.wrap", "args": { "command": "workbench.action.previousEditor" },
"when": "kb-macro.recording" },
{ "key": "ctrl+x right", "command": "kb-macro.wrap", "args": { "command": "workbench.action.nextEditor" },
"when": "kb-macro.recording" },
{ "key": "ctrl+x shift+9", "command": "kb-macro.startRecording",
"when": "!kb-macro.recording" },
{ "key": "ctrl+x shift+0", "command": "kb-macro.finishRecording",
Expand Down

0 comments on commit fee6e67

Please sign in to comment.