Tristan Koch
Tristan Koch
> From the links earlier in this issue, it looks like someone in the project needs to pay to get an Apple developer ID and then we could automate it....
I was tricked by this was well. It seems to me the default theme of Neovim has not defined `Cursor` either.
I'd really love to see this merged!
I noticed moving with `[` and `(` unfolds. Could we extend skipping to certain movements? It probably doesn't make much sense to include `/` (search) – if it even feasible.
@theol0403 I've been using this for a while now and, while limited, it works fine. Before merging this, I suggest we add the mappings [mentioned](https://github.com/vscode-neovim/vscode-neovim/pull/502#issuecomment-831682643) above and write a simple...
If by toggling we define Vscode stays in insert mode, my wild guess would be that this should be feasible. You can already sort of emulate it by not forwarding...
I did some further debugging: * Only marks of changed lines are affected (i.e. marks in other lines are not lost) * Marks are only lost if entering/exiting insert mode...
Reading through related issues (https://github.com/neovim/neovim/issues/11368, https://github.com/neovim/neovim/pull/11833), it seems this is now called `nvim_buf_set_text`. ``` nvim_buf_set_text({buffer}, {start_row}, {start_col}, {end_row}, {end_col},{replacement}) Sets (replaces) a range in the buffer This is recommended over...
> Is that feasible with diffs generated by fast-diff For reference, I believe it is feasible but not exactly obvious. ``` diff('Lorem ipsum dolores', 'Lorem foo dolores') [ [ 0,...
I see. Sounds like `nvim_buf_set_text` could even simplify the implementation. This would be ideal, of course. > Nah, i believe fast-diff with character diff mode would be kinda slow for...