(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?
vim. Just basic vim, I don't jazz it up to be all IDE-like. I want my vim to behave exactly like it would if I'm on some random other computer.
If I need autocomplete, ability to jump to the definition of stuff and so forth I use whatever the other people on the project use, which is often vscode these days.
exactly this. If I need to do development, i'll use a jetbrains product. If i'm in a pure text editing situation, I want the most powerful thing for manipulating text, and I want it to be available.
It's such a cool editor, but after decades of Vim motor memory I just can't seem to wrap my head around the cursor / selection changes. I really wish there was an option to just make selection work like Vim.
Sublime Text 3 perpetual license. I would move to VSCode as my "quick editor" but I'm not trusting an Electron app, for starters same document in both wastes 3x more RAM and second I can open 10GB SQL dumps in Sublime and perform find and replace operations in VSCode however....
This is going to be a boring answer but I use neovim. I do use it as my ide as well but it’s so fast and lightweight that when I need to edit a random config file or something, I just start another instance of it.
My own. My Emacs config grew over years to several thousand lines, and it got to a point where I decided I could write an editor in fewer lines that it took to configure Emacs how I liked it. It's ... not for everyone. I'm happy with it, because it does exactly only the things I want it to, and nothing else, but it does also mean getting used to quirks you can't be bothered to fix, and not getting to blame someone else when you run into a bug.
That said, writing your own editor is easier than people think, as long as you leverage libraries for whichever things you don't have a pressing need to customize (e.g. mine is written in Ruby, and I use Rouge for syntax highlighting, and I believe Rouge is more lines of code than the editor itself thanks to all the lexers)
Most of the configuration I've done in vim is to remove whatever someone else did. Like I log in as root on a server and someone put set number in /root/.vimrc. Like having the line number in the bottom right wasn't enough for you, you need to waste three columns to show numbers for every line on the screen, and now I can't copy and paste from vim without having to delete three columns from every line? NO.
Pulsar, granted it can be ide like and I do contribute to it but I loved atom over any other tool that I've been introduced too by anyone. Sometimes I do use nano tho bc of having some familiarity with the command line but not enough to be fully functional tbh.