I also had that experience with emacs, which has a built in help system. I couldn't find a topic on 'exit' or 'quit' and refused to just search online.
If I wanted to hear about what's good about Vim, should I:
a) ask what's good about vim
-OR-
b) assert blindly that there is nothing good about vim so fanboys will come crawling out of the walls tripping over each other to tell me how I'm wrong?
I think I get what you are intending to imply by the word "intuitively"; it's that it eventually becomes as reflexive and fluid as touch-typing itself.
Gosh you make it sound almost like you play Vim like an instrument more than use it...!
It's extremely powerful, for mostly the same reason that it's incomprehensible to newbies. It's focused not on directly inputting characters from your keyboard, but on issuing commands to the editor on how to modify the text.
These commands are simple but combine to let you do exactly what you want with just a few keypresses.
For example:
w is a movement command that moves one word forward.
You can put a number in front of any command to repeat it that many times, so 3w moves three words forward.
d is the delete command. You combine it with a movement command that tells it what to delete. So dw deletes one word and d3w deletes the next three words.
f is the find movement command. You press it and then a character to move to the first instance of that character. So f. will move to the end of the current sentence, where the period is.
Now, knowing only this, if you wanted to delete the next two sentences, you could do that by pressing d2f.
Hopefully I gave a taste of how incredibly powerful, flexible, yet simple this system is. You only need to know a handful of commands to use vim more effectively than you ever could most other editors. And there are enough clever features that any time you think "I wish there was a better way to do this" there most certainly is (as well as a nice description of how).
It also comes with a guide to help you get over the initial learning curve, run vimtutor in a console near you to get started on the path to salvation efficient editing.
I've seen vscode fill up home directories unnecessarily when run on the machine directly as well as remotely!
IMO vscode is a perfect example of recent software that looks great from a features pov but horrible from an efficient implementation pov. I loved it until I hated it.
To add to your line of query, what if I don't give a shit about writing code and I just use Linux as a casual laptop user? I've never looked at vim or emacs, I use Kate and OnlyOffice
Vim has been around long enough that I've found anything I want to figure out how to do has been discussed many times on various places around the internet and have yet to fail to find what I'm looking for with a search.
Getting used to vim has made nano unusable for me. The muscle memory is too strong. That and all of the regex and plugin features (ex. LSP) are just too useful.
I'm halfway between hx and vim, I vastly prefer the helix/kakoune philosophy of selection, then action over vim, but I'm dearly missing plug-in support for Helix
Accurate. The keyboard shortcuts just make sense and it's full of features from this millennia. Like control click for multi cursor, automatic syntax highlighting, and automatic lint indicators.
I tend to work on customer systems where I'm not allowed to install anything. I've yet to encounter one that doesn't have vi installed, but I've seen a few without nano.
This. If it was your sole tool for daily tasks it makes sense, once a month to edit a config file...not so much.
When I started working we had HP Unix Silicon Graphics systems, VI was our only text editor...so I have some commands as muscle memory. The rest of commands I open my tractor feed help printout from 30 years ago
I remember when the GNOME file manager was this kind of interesting hybrid that used MC for the backend. The one thing I liked about it was that it could be docked in Window Maker. Yep I was using a Dock in GNOME waaaaaaaaaaaaaay before most GNOME users.
Nowadays it's still possible to replicate my old Window Maker desktop in XFCE.
You're looking at the full mc package rather than just mcedit. Even then, Midnight Commander is absolutely worth that whopping 7.9MB of space it takes for all the functionality it provides.
Openwrt is not an example to use to compate against a package size, as it's target built to fit into small firmware storage spaces on all sorts of random hardware. That's comparing existential philosophy with oranges.
reinstalling all packages...
removing ace-of-penguins...
installing ace-of-penguins...
removing apt...
installing apt...
error: apt does not exist! dispose of computer.
It's a common problem but the correct solution to closing vim is quite easy, press and hold control alt and F5 to drop to a new terminal. From there you can do "killall vim" to properly close vim, then just drop back to your main session