My professor was always trying to get us to use vim or eMacs over an IDE to write our C programs. I’m sorry, I like using a mouse. I know, I know, blasphemy. I’m taking a shortcut. I’m a noob.
When I absolutely have to, I go for vim, mostly because I know a few of the key bindings for it, but otherwise avoid it.
I’m taking a shortcut
more like a longcut. I save so much time and effort not having to switch my right hand between the mouse and keyboard constantly
I keep my hands on my laptop and use my thumb on the track pad. My hands don’t leave the keyboard. I actually never use extra mice or extra keyboards.
track pad
it’s okay, we’re gonna make a plan and get you to safety. Pretend you’re ordering a pizza. How many people are currently holding you captive?
I just really can’t stand lua
If Vim is so good, then why can’t you browse Lemmy from it?
This meme was made by the Emacs gang.
Because unlike emacs gang, we don’t need to build an OS to browse Lemmy.
How bout you go back and let your friends know that if they’re in need of a good editor, try Vim ;)
Vim needs are met by using Evil-Mode. You don’t have to leave Emacs for this.
As a poke at Emacs’ creeping featurism, vi advocates have been known to describe Emacs as “a great operating system, lacking only a decent editor”.
https://en.wikipedia.org/wiki/Editor_war
:P
*stealthily closes nano window and closes laptop lid…
How bout you go back and let your friends know that if they’re in need of a good editor, try Vim ;)
If my friends wanted a good editor, then I wouldn’t recommend a Vimitor, I’d recommend ed, the standard text EDitor :p
Haha, y’all are welcome to try that ;)
Sublime gang rise up 😭
That can’t be right, the red car has a service manual and too many functioning assemblies for it to be VS.
codium > code
The full name is VScodium. https://vscodium.com/
Codium is a genus of edible green macroalgae.
Hadn’t heard of this, but I’m going to switch now!
Ooooh thank you for reminding me I need to make this switch
I don’t mind Vim, it reminds me of my years using EDT on Vax/VMS systems in the 80s and 90s. My fingers knew all the function keys so well, the UI was almost invisible. But more recent years of using Windows because of work have ingrained VS and VSCode the same way, and I like the feel of the mouse.
helix gang anyone?
:3
epic editor :3
Helix is much faster than neovim, but annoyingly it feels so limited. Can’t change anything about it.
But it’s supposed to get plugins at some point.
👋 present!
Meanwhile, James rocks up with Notepad++
I always edit my code in microsoft word. Not only can it highlight syntax, it can use different fonts for different function names.
Definitely the most fully featured IDE I’ve ever used.
smh real programmers use magnetized needles on tape
Couldn’t help myself
The Fiat Panda of text editors
tbh, one of the essential things vim gets right for me is that it’s designed as a text editor, not (only) a code editor. I use it for so much non-code text as well, but it feels weird opening a coding tool for such things.
It’s great to use an editor designed and built when vietnam and leaded gas were all the rage.
Exactly! It’s rare to find such old things that are still excellent today
I like VScodium and VIM although I have also been using Kate and nano as of late.
laughs in Emacs
I use vim btw
I use neovim btw
I use vim, aliased to vi, on Arch btw.
I plan on moving to a nice Neovim setup eventually, but VSCodium is so convenient out of the box for a baby developer like me.
You’ll be glad to know that the difficulty comes from the syntax and very little from any programming skill level. You learn new ways of writing certain code structures like indented curly braces for example. Programming python might be easier than cpp in vim, not due to the language, but just cpp having more complex syntax to type.
Tldr, almost exactly the same amount of effort whether you’ve been coding for two weeks or two years.
Have been a professional software engineer for 8 years now. Have yet to find a reason to use vim for anything (other than availability of course, but if nano isn’t installed for some godforsaken reason I have other problems lol).
I’ve been in various forms of coding and administration for around fifteen years now. Despite trying lots of editors, I have yet to find a reason to use anything but vim.
I do like obsidian for note taking.
edit: Removed typo.
Professional software engineer here, using vim as my primary editor.
Vim is a way more competent editor than nano. If you spend a lot of time editing files via ssh, vim is amazing. And when you get bitten by it, you’re infected. ;-)
Fair. But to a sysadmin or devops engineer availability is pretty important.
I used to think this way. Until I found that with emacs you can edit any file on an SSH enabled computer remotely. Meaning that not only are you no longer constrained by what the computer has installed. But you can use your personality configured editor while editing that file. It’s called tramp.
BTW, with Emacs you can use vim key bindings evil-mode, so don’t stress about that.
Tramp is more featured, but if all one cares about is being able to edit remote files using a local editor, vim can edit remote files with scp too: scp://user@server[:port]//remote/file.txt
I tried tramp-mode at some point, but I seem to remember some gotchas with LSP and pretty bleh latency, which didn’t make it all that useful to me… But I admittedly didn’t spend much time in emacs land.
I’ve also used sshfs to mount a remote directory and edit using my local editor/env.
You can do that with vscode too. And probably many IDEs.
The only real reason for which you would need to use vim in such cases is if the target computer can’t run the vscode server, which I’ve never encountered yet.
I’m talking about not needing anything installed on the server though. Like you don’t need sudo. If the server has ssh then you can use Emacs to edit a file on it
Don’t need sudo or anything pre installed for vscode either. It will send the server to the machine via SSH and then run it automagically.