Neotecha (She/her)

  • 2 Posts
  • 58 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle
rss




  • “reportedly” is in the sense of “that’s what we’re reporting”

    A third movie has not been confirmed or spoken about by anyone outside of Villeneuve; the news is that he’s open to a third movie, but probably wouldn’t take it further.

    I loved part 1, so I’m looking forward to part 2 (and hopefully part 3), but hopefully the second does well enough to keep the door open for a third. This is a Warner Brothers movie, so there’s still a chance part 2 is completed, and they decide not to release it, a la Batgirl




  • Neovim is a rewrite of the vim project. From a high level (or from the perspective of a beginner to both), there’s not much difference between the two. That is, basic usage will be the same regardless of which ones you choose. Like, the model philosophy and default key bindings are basically identical.

    You start seeing major differences with more advanced usage and under the hood.

    • Neovim is built to support async processing, while Vim is entirely synchronous

    • Neovim offers native Language Server support while Vim requires plugins to do so. (Language Server Protocol is part of what makes VSCode so powerful)

    • Vim plugins are written with a custom script called “vimscript” while Neovim plugins are written in Lua but also supports vimscript.

    There are more differences, but this should cover the basic differences. I haven’t used neovim in an age, so I’m up for any corrections if anyone has any