Skip to content

Commit

Permalink
Merge pull request #284 from tshino/update-awesome-emacs-keymap
Browse files Browse the repository at this point in the history
Update awesome emacs keymap
  • Loading branch information
tshino authored Aug 14, 2023
2 parents 5584746 + 9af454d commit 5bfc1c0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to the Keyboard Macro Bata extension will be documented in t
### [Unreleased]
- Update
- Updated keymap wrapper for Vz Keymap (v0.19.9). [#281](https://github.com/tshino/vscode-kb-macro/pull/281)
- Updated keymap wrapper for Awesome Emacs Keymap (v0.48.0). [#284](https://github.com/tshino/vscode-kb-macro/pull/284)

### [0.13.7] - 2023-08-05
- Update
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) | 2023-01-24 | `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) | 2023-01-08 | `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) | 2023-08-14 | `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) | 2023-02-19 | `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) | 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` |
Expand Down
3 changes: 2 additions & 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.47.0/package.json"
"url": "https://github.com/whitphx/vscode-emacs-mcx/raw/v0.48.0/package.json"
},
"awaitOptions": [
[ "emacs-mcx.forwardChar", "selection" ],
Expand Down Expand Up @@ -50,6 +50,7 @@
[ "emacs-mcx.paredit.markSexp", "selection" ],
[ "emacs-mcx.paredit.killSexp", "document selection clipboard" ],
[ "emacs-mcx.paredit.backwardKillSexp", "document selection clipboard" ],
[ "emacs-mcx.paredit.pareditKill", "document selection clipboard" ],

[ "emacs-mcx.kill*", "document selection clipboard" ],
[ "emacs-mcx.killWord", "document clipboard" ],
Expand Down
4 changes: 3 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.47.0
// Keymap wrapper for Awesome Emacs Keymap v0.48.0
// (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 @@ -1573,6 +1573,8 @@
"when": "kb-macro.active && editorTextFocus && config.emacs-mcx.useMetaPrefixEscape" },
{ "key": "ctrl+[ ctrl+shift+2", "command": "kb-macro.wrap", "args": { "command": "emacs-mcx.paredit.markSexp", "await": "selection" },
"when": "kb-macro.active && editorTextFocus && config.emacs-mcx.useMetaPrefixCtrlLeftBracket" },
{ "key": "ctrl+shift+k", "command": "kb-macro.wrap", "args": { "command": "emacs-mcx.paredit.pareditKill", "await": "document selection clipboard" },
"when": "kb-macro.active && editorTextFocus" },
{ "key": "ctrl+alt+k", "command": "kb-macro.wrap", "args": { "command": "emacs-mcx.paredit.killSexp", "await": "document selection clipboard" },
"when": "kb-macro.active && editorTextFocus && !config.emacs-mcx.useMetaPrefixMacCmd" },
{ "key": "ctrl+cmd+k", "command": "kb-macro.wrap", "args": { "command": "emacs-mcx.paredit.killSexp", "await": "document selection clipboard" },
Expand Down

0 comments on commit 5bfc1c0

Please sign in to comment.