Theo Lemay
Theo Lemay
This would be a major improvement for vscode-neovim, as currently window management is done through hacks.
This may be fixed by https://github.com/neovim/neovim/pull/27858... removing the need for the fake cursor?!
Yeah, for some reason the arrows don't work in command mode anymore. I tried installing some very old versions of this plugin and still could not get it to work,...
@uladkasach It would be worth considering, and also solve a few other problems regarding quickpick's limitations (and support more bindings). However, the largest drawback is showing completions - any idea...
Still not fixed, waiting for https://github.com/microsoft/vscode/pull/196899
Fixed by https://github.com/vscode-neovim/vscode-neovim/pull/2001
What if you constructed a new uri to pass to saveAs? It's not some random ID but instead a structured definition of some resource.
Humm. Worth noting it doesn't currently work either so this wouldn't be a step backwards. Maybe we just call the dialogue when bang or a different path to the current...
Actually, take a look at https://marketplace.visualstudio.com/items?itemName=sleistner.vscode-fileutils https://marketplace.visualstudio.com/items?itemName=patbenatar.advanced-new-file https://marketplace.visualstudio.com/items?itemName=robole.file-bunny
This might be what we need: ``` await vscode.workspace.fs.writeFile(uri, new Uint8Array()); await vscode.commands.executeCommand("vscode.open", uri); ```