Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I like VS Code, should I learn Vim? #568

Closed
lamyergeier opened this issue Dec 21, 2018 · 3 comments
Closed

I like VS Code, should I learn Vim? #568

lamyergeier opened this issue Dec 21, 2018 · 3 comments

Comments

@lamyergeier
Copy link

I know some people (even the young ones) still swear by Vim. I am not sure if its worth knowing vim as well?

@jay-hankins
Copy link

jay-hankins commented Dec 26, 2018

Hey @anishmittal2020, I am 23 and just graduated with a computer science degree in May 2018, so I don’t know if you consider me one of the “young ones”, but here are some thoughts. I personally use VS Code around 80% of the time, and Vim 20% of the time. Here’s why I think Vim is valuable:

Vim is great for remote editing

Over time, you’ll find yourself in situations where using a GUI editor, such as VS Code or Sublime Text, isn’t easy, feasible, and/or possible. For instance, working on remote machines via SSH. Sure, in some cases you can use SFTP or SCP or rsync or whatever to use VS Code to edit remotely, but that’s a lot of work if you’re just trying to make simple changes.

For example, what if you need to quickly change a system’s hosts file? If you know Vim, then you just SSH to the system and run vim /etc/hosts, save your changes, and you’re done. Again, you could sync directories or even use something like sshfs for remote mounts, but that’s a heavyweight solution. Additionally, you may find that due to security concerns you can’t do this direct syncing or mounting.

The same idea expands to docker containers, where you might want to make a change in-container to verify it before you rebuild the docker image.

You don’t have to learn Vim all at once

I think a lot of people get hung up on “learning” Vim because of the jokes about not being able to exit. It’s not just that, obviously, and there is a bit of complexity to Vim. But for all the power it gives you, you can get started with it fairly easily.

  • To quit, it’s :q!. Just knowing this command, we can learn a few things about Vim: commands start with :, can be shortened quit -> q and can be forced with !.
  • To save (write) a file, it’s :w filename, which teaches us that we can also give parameters to commands.
  • To quit and write, it’s :wq, and we learn that commands can be chained together.
  • hjkl are the movement keys, along with w for “ word” and b for “back word”.
  • Hit i for Insert Mode where you can type. And hit esc to get back to the command mode where the keys perform actions rather than typing.

In 5 bullet points, you’ve learned a lot about Vim and know the basics to edit a file. From here you just have to practice by using it, it’s truly the best way to learn something. If you’re familiar with the command line and have gone through the process of learning that, it’s the same thing. You use the terminal as much as you can, figuring out how to do things when you don’t know.

If you didn’t know, there’s vimtutor which is a short 30 minute tutorial that helps you learn some more advanced things about vim, like replacement modes, motion, and more. It has you make corrections in place so you practice as you go. I highly recommend it, but again, you don’t have to master everything at once. Vim is flexible, so there’s a lot of stuff you might never use. VS Code is the same way, and I bet you didn’t worry about learning all the ins and outs of it.

There’s lots of plugins for Vim, it’s harder to curate them

The VS Code extension Marketplace is one of the best parts of VS Code because it makes it easy to find ways to customize the editor to your needs. Vim has mostly the same plugins, in my experience, although it is a bit more challenging to curate and manage them. Mostly you use a plugin manager like vim-plug and store configuration in your .vimrc.

VS Code doesn’t run everywhere (yet?*)

This goes back to the remote editing aspect, but with a twist. I just purchased an iPad Pro for use as an ultra-portable computer when I travel (I really hate lugging laptops in the airport 😅). I rely on SSH and my remote servers to be able to really work (mostly coding and configuration changes). Essentially, the iPad becomes a remote terminal to the server and I’m doing my work there (not unlike the mainframe days 😄) so my only option is an editor that works over SSH. There are lots of editors out there but I prefer Vim!

* VS Code is just a Javascript application. It’s all just code! ¯\(ツ)/¯ Its editor can and has been shipped in other web apps, so you could potentially find a cloud editor that had similar capabilities (Cloud9? I’m not interested in this because I find the UX of a web editor quite poor, so I don’t really know) today, but that isn’t quite the same. In the future, it’s possible that we’d see VS Code on the iPad or ... VR headsets ... Tesla automobiles? Who knows. Anything is possible. Maybe Vim will come to those platforms too 😎

Over time, you’ll probably get curious enough to try Vim anyway

This is just what I’ve seen in myself and my peers! 👨‍💻 👩‍💻

You asked if it’s “worth knowing Vim”, and I think the answer is yes, but perhaps you shouldn’t fret about the learning aspect as much as just using it when you can!

@v-braun
Copy link

v-braun commented Dec 26, 2018

@jay-hankins thanks a lot for this micro tutorial on Vim!
For the SSH stuff I prefer nano because it is simple (and I know how to leave it). With your 5 bullet points in mind, I will give Vim a try.

@sindresorhus sindresorhus changed the title I like VS Code should I learn Vim? I like VS Code, should I learn Vim? Jun 16, 2019
@sindresorhus
Copy link
Owner

If you like VS Code, use VS Code. Don't give into the pressure to learn Vim if you don't want to. Vim is a good editor, but it will not make you a better programmer. Personally, I've tried to get into Vim many times through the years, but I never liked it. For me, it's just too many keyboard shortcuts, everything is too undiscoverable, and too much legacy. So pick an editor that you like and learn it well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants