• @Hexarei
    link
    43 months ago

    I have most of the features of an IDE in my neovim config; name a feature and there’s almost certainly a plugin for it!

    Those are just a few small examples. One of my favorite things that vim enables for me is working with text objects. Things like functions, variables, classes, conditionals, paramters… Etc. Any action works with any text object - Want to jump to the next function in the file? Copy everything inside of a conditional? Cut everything up to (but not including) the nearest capital D on the line? Delete just the word your cursor is in the middle of (and one of the spaces around it)? Delete the current line and the N lines below it?

    The motions make editing code incredibly fast, and I still have modern features like variable completion, copilot, intellisense, ‘jump to definition’, “hover” information, fuzzy search in project… Name a feature. I highly recommend giving it a closer look for stuff like that.

    • @[email protected]
      link
      fedilink
      English
      2
      edit-2
      3 months ago

      That does sound pretty good, and all without an IDE that hangs several times a day too. I haven’t really taken advantage of vim’s power.