From 0bc8ef337b786dda4b80da314a57d9d339880d12 Mon Sep 17 00:00:00 2001 From: screw-hand <screwhand0@gmail.com> Date: Fri, 30 Aug 2024 18:23:11 +0800 Subject: [PATCH 1/2] docs: update troubleshooting guide for vscode-neovim users --- docs/troubleshooting.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index de482f9..9eab4fa 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -86,3 +86,17 @@ and `keybindings.json` files in order to spot some weird conflicts. ## Known Issues - File browser (bound to `<spc> f f`) doesn't have a button to open local file with VSCode Remote + +## For vscode-neovim users + +After installing the extension, you only need to update `keybindings.json`, `settings.json` doesn't need to be updated. +After using the command `VSpaceCode: Configure Default Keybindings`, +refer to the [issues](https://github.com/VSpaceCode/VSpaceCode/issues/34#issuecomment-1155115164) and update `keybindings.json` "to complete the initial configuration: + +```json + { + "key": "space", + "command": "vspacecode.space", + "when": "editorTextFocus && neovim.mode == normal" + }, +``` \ No newline at end of file From 1148cf46321afff8be4c3f371477b0c3279a67e2 Mon Sep 17 00:00:00 2001 From: screw-hand <screwhand0@gmail.com> Date: Tue, 3 Sep 2024 16:56:11 +0800 Subject: [PATCH 2/2] docs: move the vscode-neovim users chapter to installation. --- docs/installation.md | 13 +++++++++++++ docs/troubleshooting.md | 14 -------------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 9f7b67b..4c8c306 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -43,3 +43,16 @@ The following commands can be accessed through command palette to rerun the auto [settings]: https://github.com/VSpaceCode/VSpaceCode/blob/master/src/configuration/settings.jsonc [keybindings]: https://github.com/VSpaceCode/VSpaceCode/blob/master/src/configuration/keybindings.jsonc + +## For vscode-neovim users + +After installing the extension, you only need to update `keybindings.json`, `settings.json` doesn't need to be updated. +After using the command `VSpaceCode: Configure Default Keybindings`, update `keybindings.json` to complete the initial configuration: + +```json + { + "key": "space", + "command": "vspacecode.space", + "when": "editorTextFocus && neovim.mode == normal" + }, +``` diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 9eab4fa..de482f9 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -86,17 +86,3 @@ and `keybindings.json` files in order to spot some weird conflicts. ## Known Issues - File browser (bound to `<spc> f f`) doesn't have a button to open local file with VSCode Remote - -## For vscode-neovim users - -After installing the extension, you only need to update `keybindings.json`, `settings.json` doesn't need to be updated. -After using the command `VSpaceCode: Configure Default Keybindings`, -refer to the [issues](https://github.com/VSpaceCode/VSpaceCode/issues/34#issuecomment-1155115164) and update `keybindings.json` "to complete the initial configuration: - -```json - { - "key": "space", - "command": "vspacecode.space", - "when": "editorTextFocus && neovim.mode == normal" - }, -``` \ No newline at end of file