💾 Archived View for dioskouroi.xyz › thread › 29396928 captured on 2021-11-30 at 20:18:30. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Neovim v0.6.0 Released

Author: ziihrs

Score: 32

Comments: 7

Date: 2021-11-30 20:17:12

Web Link

________________________________________________________________________________

deckiedan wrote at 2021-11-30 20:35:30:

Congratulations neovim team!

Is there a "top 5 features" of 0.6? Seems like a million bugfixes and lsp/tree sitter tweaks... But what new things will come from here?

mjlbach wrote at 2021-11-30 21:04:26:

Random neovim maintainer here:

These are just my top 5.

* vim.diagnostic (see gpanders talk at

https://www.twitch.tv/videos/1220189913?t=00h58m27s

)

* vim.json (api-fast safe json deserialization with vendored lua-cjson)

* virtual lines (

https://github.com/neovim/neovim/pull/15351

)

* lua bindings to xdiff (

https://github.com/neovim/neovim/pull/14536

)

* a million bugfixes as you say :)

I personally worked on fixing utf handling around the built-in language server client, rewriting the incremental sync algorithm, vim.json (the built-in language server client is now fine with typescript-language-server thanks to the deserialization improvements), amongst various other small improvements.

ahurmazda wrote at 2021-11-30 22:06:36:

Thank you for all y'all hardwork. Neovim has become my workhorse since 0.5 and I am loving it.

I am excited about the virtual lines. Quite a few possibilities there.

sieste wrote at 2021-11-30 22:10:11:

I don't understand what the new virtual lines feature does. Can anyone explain?

ahurmazda wrote at 2021-11-30 22:53:07:

The way I picture it is having true N number of lines on your working buffer that does not interfere with the actual line count in your file. We already have virtual-texts in neovim that only can show up on the same line as existing texts.

Pay close attention to the line counts in the image (from original PR)

https://user-images.githubusercontent.com/1363104/129208266-...

epage wrote at 2021-12-01 01:25:37:

In my skimming, it sounds like its mostly targeted at plugin developers. The main directly user-impacting part seems to be the adjustments to defaults.

maxioatic wrote at 2021-11-30 20:42:29:

Nice! I bet this feels good for the team after the almost year between 0.4 to 0.5. Hopefully they take some time off this winter!