(Graphical) IDE’s are great for development, but they’re slow to start and heavy to run. Sometimes you just want to take a quick look at an xml or dockerfile and you don’t want to spin up the whole IDE for that.
I’ve recently rediscovered notepad++ for that (on windows), what’s your prefered easy-acces-tekst-editor?
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person’s post makes sense in another community cross post into it.
Hope you enjoy the instance!
Follow the wormhole through a path of communities !webdev@programming.dev
Yeah, I’d call Emac and Vim both IDE’s. They’re definitely not “just” text editors.
Vim can have some IDE-like qualities, if you bolt enough plugins in to it, but by default it affords buttinx text in a file and manipulating it.
I woudn’t classify it as an ide though.
Neovim can can certainly be an IDE, but its complexity comes from having a lot of features to rapidly edit text. d5d deletes 5 lines, vwwy selects two words and yanks them, gg returns to the beginning of the file, etc. It’ll maybe do some code highlighting out of the box but its featureset is about never needing to touch a mouse or leave home row.
It’s about like notepad++ on Windows in that it’s very good for quick edits of a file or otherwise manipulating plaintext but it isn’t good out of the box for actual writing meant to be read by other human beings.