update readme

This commit is contained in:
jasonwilliams 2024-01-02 22:05:59 +00:00
parent 6b5782fef9
commit 2daa97ad03
2 changed files with 27 additions and 7 deletions

View File

@ -23,7 +23,7 @@ For added performance, you can try adding the following [setting](https://github
```json
"extensions.experimental.affinity": {
"vscodevim.vim": 1
"jasew.vscode-helix-emulation": 1
}
```
@ -36,11 +36,11 @@ around movements, (i.e moving the editor from one window to another).
| Command | Description |
| ---------------- | ------------------------------------------------------- |
| `ctrl+w + m + v` | Move editor to the next group vertically (to the right) |
| `ctrl+w + m + s` | Move editor to the next group horizontally (below) |
| `ctrl+w + m + p` | Move editor back to the previous group |
| `ctrl+w + m + w` | Move editor out into a new window (experimental) |
| `ctrl+w + m + j` | Rejoin editor with main window (experimental) |
| `ctrl + w, m, v` | Move editor to the next group vertically (to the right) |
| `ctrl + w, m, s` | Move editor to the next group horizontally (below) |
| `ctrl + w, m, p` | Move editor back to the previous group |
| `ctrl + w, m, w` | Move editor out into a new window (experimental) |
| `ctrl + w, m, j` | Rejoin editor with main window (experimental) |
Most of the differences will be related to the fact VSCode doesn't have TreeSitter or have access to an AST. So we often need to find other ways of achieving the same action.

View File

@ -1,6 +1,6 @@
{
"name": "vscode-helix-emulation",
"version": "0.1.0",
"version": "0.2.0",
"displayName": "Helix For VS Code",
"description": "Helix emulation for Visual Studio Code",
"publisher": "jasew",
@ -145,6 +145,26 @@
"key": "ctrl+i",
"command": "-editor.action.triggerSuggest",
"when": "true"
},
{
"key": "down",
"command": "-selectNextCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "up",
"command": "-selectPrevCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "ctrl+n",
"command": "selectNextCodeAction",
"when": "codeActionMenuVisible"
},
{
"key": "ctrl+p",
"command": "selectPrevCodeAction",
"when": "codeActionMenuVisible"
}
],
"configuration": {