nobane
nobane
> From your message, I assume the npm launch strategy didn't work either? Yeah, I have tried those settings. For a project with `${workspaceFolder}/web/package.json` I tried: ```json "storyExplorer.server.internal.npm.dir": "${workspaceFolder}/web", "storyExplorer.server.internal.launchStrategy":...
Comment out these lines as a workaround to restore insert mode: ```diff diff --git a/src/cm/keymap_vim.js b/src/cm/keymap_vim.js index a8f9115..0052cb9 100644 --- a/src/cm/keymap_vim.js +++ b/src/cm/keymap_vim.js @@ -3447,9 +3447,9 @@ var Vim =...
Workaround fix for the normal mode cursor styling: ```diff --- a/src/cm_adapter.js +++ b/src/cm_adapter.js @@ -875,6 +875,7 @@ class CMAdapter { this.editor.updateOptions({ cursorWidth: config.fontInfo.typicalFullwidthCharacterWidth, cursorBlinking: "solid", + cursorStyle: "block", }); }...
Looks like you have your `package.json` and `node_modules` residing outside of the root of your workspace, so this may be connected to this problem I have identified #1093
The setting is now `"rust-analyzer.check.overrideCommand"`