If I try to learn VIM, will I be glad I did?
56
closes Sep 24
58%
chance

Resolves N/A if I don't end up trying to learn Vim, resolves Yes if I do and am glad I tried to, No if it is too frustrating and I give up/it feels like a waste of time, somewhere in between if I had mixed feelings.

I'm not necessarily referring to the specific Vim program—if I use the Vim keybidings feature in Obsidian extensively then that would count. It's about attempting to develop the skill set, not about installing Vim.

Get Ṁ500 play money

Related questions

Will something bad happen as a result of the thing I did for the past twenty minutes?
jacksonpolack avatarjackson polack
35% chance
Will I scream when paragliding during the vacations?
Dvorakgigachad avatarDvorak gigachad
65% chance
How many houseplants will I end up buying for my college dorm?
Kyle60d6 avatarKyle
2.3
Will I get Dan Heng Imbibitor Lunae?
KyleWan avatarHazepski
10% chance
Will I practice driving?
alleycat avataralleycat
56% chance
If Bee switches from Vim to VScode, will she kick herself for not having done so sooner?
dreev avatarDaniel Reeves
66% chance
Will I successfully climb a red problem at my climbing gym?
samb avatarsam
13% chance
Will me or my brother read more Books this year?
Will I get Fu Xuan?
KyleWan avatarHazepski
9% chance
Will [my secret project] succeed, by my subjective estimate?
NicholasKross avatarNicholas Kross
29% chance
Will I go to hell when I die?
IsaacKing avatarIsaac
35% chance
Will typst replace LaTeX (for me)?
AlexbGoode avatarAlex B. Goode
54% chance
Will I feel fight-or-flight type fear because of tech swag I wear?
agentydragon avatarRai
37% chance
Will I fuck around and find out?
TatianaSurver avatarTatiana Surver
80% chance
If I learn Colemak, will I be able to improve my typing speed?
howtodowtle avatarhowtodowtle
71% chance
What will be the first year that I will be able to generate a video of a kitten drinking out of a saucer of milk?
Will I start a business?
BenjaminIkuta avatarBenjamin Ikuta
55% chance
Will DALLE-3 be able to create an image to the prompt of "kneading dough" with correct number of fingers on both hands?
firstuserhere avatarfirstuserhere
78% chance
Will I ever be a proofnik?
Wobbles avatarWobbles
14% chance
Will I be able to speak fluent Spanish after spending 6 months backpacking in South America?
DavidGoliath avatarDavidGoliath
65% chance
Sort by:
lieblius avatar
Kylebought Ṁ20 of YES

I don't think spending the time to become a vim god is worth it but learning the basics is useful. Great for remote shells and if you're already working in a command line interface and are too lazy to leave it. Sometimes I just want to peek into a file and make some quick edits and its nice. I wouldn't get too worked up over trying to utilize complicated strings of commands; just go for the basics one step at a time and your learning can compound as you use it naturally. vimtutor is how I started, and here's my config (rename to .vimrc and place in ~/) in case it's useful.

1 reply
lieblius avatar
Kylepredicts YES

I always like using keyboard shortcuts over my mouse whenever possible, such as in my browser and OS. If you enjoy the journey of perpetually optimizing your efficiency and understand it is a thing you never reach but always get better at you'll be happy with it.

April avatar
Aprilpredicts YES

Okay, I'm gonna start trying now

2 replies
Jono3h avatar
Jonopredicts YES

@April Good luck! Vim really doesn't need tweaking (especially as a plug-in) except that you want easy access to your escape key. Many change their keyboard layout such that Esc becomes caps-lock and vice versa. Google will help you out there.

Lorec avatar
Lorecpredicts YES

@April If you haven't done this already, I suggest trying inoremap jk <Esc> or similar in your vimrc so your escape key is [eg] j-then-k-in-quick-sequence. Caps lock is nice but you can't beat letter keys for ergonomics and since you're escaping all the time in Vim it makes a huge difference

DanielFilan avatar
Daniel Filanbought Ṁ10 of YES

Might be cool to make a similar market for emacs.

ML avatar
MLpredicts NO

As someone who has spent hundreds of hours editing code in vim: it was great in its day -- which was mostly when your parents were toddlers -- but we actually have learned some things about UX design and optimization since 1974 (leaving learnability aside). Modern IDEs have features like regex search and replace available with no more keystrokes than vim.

5 replies
BeatRohrer avatar
Beat Rohrerbought Ṁ10 of YES

@ML using vim as the main coding environment is only one use case – I mostly use it for editting config files on remote servers or analyzing or formatting documents my IDE is not well suited for.

Lorec avatar
Lorecbought Ṁ10 of YES

@ML But what can they do better? Aside from extensive autocompleting, as someone who actively dislikes that.

ML avatar
MLpredicts NO

@Lorec Well, code refactoring. to start with. Not just renames (which can be done in vim with a macro activating an LSP plug-in) but things like e.g. IntelliJ's "pull members up", "replace inheritance with delegation", "extract interface". In IntelliJ's case there are also quality-of-life things like many dozens of code inspections (like "Loop can be replaced with Collection.removeIf()") most of which offer two or three-keystroke shortcuts to fix them for you in various ways (such as by replacing your loop with a provably equivalent call to Collection.removeIf()). It is also nice to, when stopped at a breakpoint while debugging, mouseover a variable to see its current value with zero keystrokes required. I could go on (without mention any generative-AI-based features).

kenakofer avatar
kenakoferpredicts YES

@ML I agree with this. I use IntelliJ at work, but the best part is the IdeaVIM plugin. Most time spent coding is still humdrum vertical and horizontal navigation followed by inserts and deletes, which VIM makes less unbearable. I love that basically every IDE has a VIM plugin, so I can bring all this mundane utility with me across IDEs and into server ssh sessions as well.

Lorec avatar
Lorecpredicts YES

@ML Thanks for the thoughtful response! To clarify, refactoring falls into the category I had in mind when I said "extensive autocompleting". I'm turned off as a user by any features that try to understand the semantics of my code and do anything with that, beyond simple auto-indentation and paren-matching in Lisp specifically - IME it doesn't work nearly as well in other languages.

BeatRohrer avatar
Beat Rohrerbought Ṁ55 of YES

You can also try using Vimium or Vimium for Firefox for browsing. I‘ve been using it for a couple of years and found it to be really nice to control the browser via vim keyboard commands.

April avatar
Aprilpredicts YES

The semester started last Monday, so my vim learning attempt (if I end up trying it) will probably not be until I get settled into a routine better

April avatar
Aprilpredicts YES

why did i spell vim in all caps

1 reply
euclaise avatar
Jadepredicts YES

@April Because it's an acronym for VI iMproved?

HenkPoley avatar
Henk Poleybought Ṁ5 of YES

If you (will) SSH to servers often, then it is nice.

2 replies
BeatRohrer avatar
Beat Rohrerpredicts YES

@HenkPoley More than nice: you’ll need a real editor if you want to work efficiently on a remote machine via ssh and this is either vim or emacs.

tfae avatar
Lambda Fairy

@HenkPoley yeah, especially on a slow connection, being able to make precise edits without having to wait for the cursor is pretty useful

KamilStaszewski avatar
Kamil Staszewski

ladies will for sure be glad

capybara avatar
capy

Try out the vim game! Is a fun way to learn

lukres avatar
lukresbought Ṁ9 of NO

I know I wasn't

Aprilbought Ṁ10 ofYES
April avatar
April

Jendrik predicted on twitter that I would be glad and I would like this to be reflected in the market

GrettaDuleba avatar
Gretta Duleba

What are you using now, and how adept do you feel with it?

1 reply
April avatar
April

@GrettaDuleba Mostly VSCode. I'm not very sure how to measure adeptness, but like—I don't know, a normal amount of adeptness?