Theo Lemay
Theo Lemay
The altercommand hack is very gross. There is some useful information in https://github.com/vscode-neovim/vscode-neovim/discussions/887 that should help with removing it. - [x] https://github.com/vscode-neovim/vscode-neovim/issues/521 - [ ] https://github.com/vscode-neovim/vscode-neovim/issues/752 - [x] https://github.com/vscode-neovim/vscode-neovim/issues/798
Currently, external buffers are not supported, as well as switching between upper case marks and jumplist. Issues: - [ ] https://github.com/vscode-neovim/vscode-neovim/issues/476 - [ ] https://github.com/vscode-neovim/vscode-neovim/issues/505 - [ ] https://github.com/vscode-neovim/vscode-neovim/issues/1223 -...
This continues the work of https://github.com/vscode-neovim/vscode-neovim/pull/993 and https://github.com/vscode-neovim/vscode-neovim/pull/885. Will fix https://github.com/vscode-neovim/vscode-neovim/issues/1261. Currently in a very rough draft. A lot of work is needed, including in reconsidering how change locks are...
We want to refactor two-way sync. - [x] https://github.com/vscode-neovim/vscode-neovim/pull/992 - [x] https://github.com/vscode-neovim/vscode-neovim/issues/543 - [ ] if we send inputs using nvim_input, we can remove dot-repeat hack, composite escape, etc -...
Ref: https://github.com/vscode-neovim/vscode-neovim/issues/1266 This removes the need for the custom dot repeat hack and composite escape. For composite escape to work it currently needs https://github.com/max397574/better-escape.nvim. I'm not sure if this is...
This PR adds a new feature to sticky keys. ## New properties #### `lazy` By default, sticky keys are activated on press until another key is pressed. You can enable...
Fixes https://github.com/vscode-neovim/vscode-neovim/issues/288 As of https://github.com/microsoft/vscode/pull/211756, arrow keys are now bindable in quickpick.
## Feature description For there to be a `VisualChanged` autocommand that fires whenever the visual selection changes. For `v:event` to be populated with visual mode and visual boundaries (row and...
:robot: I have created a release *beep* *boop* --- ## [1.11.4](https://github.com/vscode-neovim/vscode-neovim/compare/v1.11.3...v1.11.4) (2024-05-12) ### Bug Fixes * include time and scope in log file ([#1951](https://github.com/vscode-neovim/vscode-neovim/issues/1951)) ([cccdf99](https://github.com/vscode-neovim/vscode-neovim/commit/cccdf9936c03a091e39811d55876c4dfab0dc7fb)) --- This PR was generated...
`:h diagnostic-api` has a bunch of methods to interact with buffer diagnostics. VScode also provides a [Diagnostics](https://code.visualstudio.com/api/references/vscode-api#languages) API. The main value for this is to hook `vim.diagnostic.goto_next(severity)` and `vim.diagnostic.goto_prev(severity)`, which...