|
|
|
|
|
by mbag
3142 days ago
|
|
What I found about Vim is that it requires a bit of mind shift, compared to other IDEs. I came to the game very late, but yeah, I've been editing with Vim for the past 6-7 years.
My primary motivation when moving to Vim, was that I didn't like using mouse and then running back to the keyboard to write text. Now, it might not seem like much time is wasted during this shift, but imagine doing this many time during work day and it adds up. Furthermore, I did a lot of editing on remote systems, which were headless, so you didn't get graphical editors. When learning Vim it's not wise to learn about everything at once. start slow at first, lear a few commands, then when you find you are doing something many times, try to find way to optimize it. Try not to use mouse for highlighting, use different visual modes instead (visual line, visual block are great). Here is article be the Vim author which can give you some hints on how to edit files: http://moolenaar.net/habits.html And as he mentions there, it can be applied to making your editing more efficient with other editors as well, so it's not a waste of time :) |
|