Damn, I've been using vim for almost a decade and didn't realize that /<term> worked as a movement so you can do things like y2/foo and yank to the second occurrence of “foo” (to use the example from the tutorial).
That's why I scan every beginner vim tutorial that comes across hn. I always learn something
Took me years to learn that one, too. It may be favorite Vim trick now.
Basically everything that can make your cursor jump can be used as a motion with a command - moving to a mark, undoing/redoing jumps with Ctrl+o and Ctrl+i, and hopping to a matching brace with % are more examples.
I gave up pretending that I'm a Vim beginner a year or two ago, but I also continue to skim through and learn from "beginner" tutorials that show up in my stream. People always pick a different set of "basic" commands, and from this one, I learned about "t<letter>", which I hadn't known before.
Except, let's be honest, Emacs' way makes a lot more sense. Someone who has used Emacs for ten minutes can easily figure this out because Emacs tries to help the user. The naive way of copying to the end of a search term is C-SPC C-s term ENT C-w. But, after you've hit ENT to end the search, Emacs does something amazing. It prints "Mark saved where search started." So now the next time you run this command, you know you won't need to set the mark. Because it told you!
(Eventually, you'll learn to expect this behavior because pretty much every interactive motion command does this and prints "Mark set.")
Funny. I found out about that early, merely experimenting.
I rarely use it nowadays tough. I used to use it for stuff like "delete up to the next dot" and the like. But that was until I learned about f and t. :)
Here's a Vim trick I only figured out fairly recently. Everybody knows that % jumps between a bracket, brace or parenthesis and its matched pair, but what happens if you hit % while the cursor isn't on such a character? Turns out, it searches forward until it finds such a character, then jumps to its matched pair.
So for example, let's say you had a nested function invocation that was getting long and unwieldy and you wanted to break it out onto its own line:
If you put the cursor on the 'g' at the beginning of 'globalConfig' and press "d%", it will cut the function name and all the parameters in one action.
ci( is another nifty trick that will do the same but will work anywhere between the two ('s not just at the beginning of globalConfig. See ":help text-objects" for more details on one of the more powerful feature of vim.
That would delete just the function name (`globalConfig.getParam`), not the argument list as well. `d%` would grab the function name _and_ its argument list.
"Fortunately vim comes with some very good tools and an excellent documentation. Run vimtutor until you are familiar with most basic commands. Also, you should read carefully this page: :help usr_02.txt."
It takes less than 30 minutes, and teaches you a lot of useful things, with practice, that actually makes you memorize the things. If spending 30 minutes learning vim is "slow and boring" to you, then I sincerely doubt vim is for you.
Indeed, the article is certainly too short to be slow or boring. It reads in 2 minutes, and you learn near to nothing about Vim, not even search and replace or <c-y>.
Actually "cw" doesn't change the current word.. it changes where the cursor is to the end of the word. Something I tend to use a lot is: (| is the cursor)
ciw (Really change the current word. "Fo|o Bar" -> "| Bar"
ci" (Change in between ": "Test 12|34" -> "|"
da" (Delete in between " AND the "": a"Test 12|34"b -> ab
Also, plugins are extremely important. For instance, one of my favorite makes the "w" smarter for day to day programming word. (I mapped it to ,w) For example:
Oh, and the surround plugin is so useful.. something I tend to do a lot is:
viws' : viw "highlight the current word"
and s' surrounds it with ''. *Soooooo* useful.
You can also do yiws' but I like to see what
will be surrounded as something there're spaces
or other characters which doesn't *count* in
"w".
I use that da" very often, but for some strange reason it stuck in my brain as abbreviation from 'delete around "', which is inaccurate. Thanks for making me realize this.
Thanks for the guide. If I might suggest another small gem that beginners would appreciate, is a way to copy text with a mark. I.e. ma go to the end y`. It may be easier than vwwwwwwww y or something similar.
Don't do what this guy says! Or at least don't stay in phase 1 for longer than a day. I've had used vim for a few years as a pico replacement, whenever I was on a remote computer on ssh. I picked up some really bad habit, like staying in insert mode all the time and using the arrow, home and end keys. I actually had to deactivate the arrow keys in my vimrc.
I would recommend going thought the tutorial, that comes with vim (vimtutor command) and after that reading those articles:
I'm in the minority camp that doesn't think arrow keys are a big deal, but I suppose I need to qualify that and say "not a big deal if you are on a Thinkpad" and you have an solid reach of curled fingers in your right hand. There's are efficiency gaps in between
1) keeping fingers on jkl;
2) manipulating the arrow keys with fingertips,
primarily using the pinky for quick movements
3) lifting the hand to use the arrow keys
and they do add up over time, but I'm not sure how detrimental they are.
Sometimes, the arrow keys provide a nice mental break, where you can step back from the doc and examine what's happened so far with the arrow keys or page up/down.
When you use the arrow keys to move the cursor around: a nice mental break.
When you use the mouse to move the cursor around: an utterly evil, productivity-destroying action, because you take your hands off the home row (oh wait...)
Great post. I like the way author splits the big problem into smaller ones and reduce the learning curve by different stages. When I recommend vim to my friends, they are usually frightened by the OReilly's thick vi/vim book and most people cannot "survive" in vim before they give up.
My problem with using Vim, and the source of my hesitation to learn it more, is that I'm a fairly haphazard typist. I type fast, but messily. I've never really been able to clean it up. I'm just naturally a little clumsy.
In my IDE, this is never, ever a problem. Most of the dangerous commands require I go to the mouse, so I can't simply blaze through them on the keyboard. Anything I mess up at the keyboard, I can always undo with backspace or a cntl+z. Furthermore, there is visual confirmation of exactly what each command I entered is doing and a chance to cancel it if it's going to do stuff I don't want.
In Vim, this isn't the case. I can be blazing along on the keyboard, attempt to enter a command, screw it up and enter not just one, but a whole sequence of incorrect commands. These commands could be very problematic -- doing things that are hard to undo. And it can be very difficult for me, as a Vim novice especially, to figure out exactly what I screwed up and how to undo it.
I know some of that may be remedied with more knowledge. I'm sure there's some way to view a detailed command history, and I know it has an undo. But I still feel as if, for myself at least, the danger of keyboard mashing screw ups completely counteracts any gains in productivity I'd make. And given that I wouldn't really gain anything by using Vim, I prefer the comfort of my visually based IDE.
Aside from which, I'm really fond of the way Eclipse's windows are dockable and movable and I make frequent use of that feature. Interrupting processes or juggling multiple terminal windows just isn't the same.
What do you mean by "hard to undo?" Every Vim user has, more than once, accidentally begun typing in command mode and done crazy things. The solution is to just hit u (undo) a couple of times.
Granted, some commands have side-effects, (e.g. "w! existing.txt" which would overwrite an existing file), but they are sufficiently complex that the odds of typing one are extremely low. I have been using Vim on a daily basis for over a decade, and I cannot recall a single time that I've accidentally typed an irreversible command.
By that I mean more that, they go by so fast, often with out much visual confirmation of what just happened, that it's very easy for me to not know even how far back I have to undo. I don't know what I've just done! In a visual IDE, that's a non issue, there's a pretty clear visual cue for everything.
One thing I would love to see—and which I can only assume exists—is a guide like this, tailored to writing prose rather than code. This article maintains certain assumptions that are held by nearly every other guide, like 'You are always in normal mode, and only enter insert mode for short bursts of typing text, after which you press <Esc> to go to normal mode.' Which is true and useful for coding, but slightly less so for prose—not entirely less so, and it's still a good idea to get in the habit of busting out of insert mode when you've finished whatever thought you're writing down, but the lines between thinking, composing and editing are blurrier than in prose.
Nevertheless vi controls can be pretty semantic, and lend themselves pretty effectively to working with words, clauses, sentences, and paragraphs. On the other hand, using search for mid-paragraph navigation is an order of magnitude less efficient in prose, when you're so much more likely to have symbols and words doing totally different things in many places in your text.
Here is a 13 page guide specifically aimed at writers using Vim or Gvim. Explains how the movement commands change with soft wrapping of lines and so on.
Thank you keithpeter and keithpeter for those two links.
A minor thing that's useful if you stay in insert mode for long periods: You can click the mouse anywhere while in Insert mode, and your cursor/insertion point will move to where you click. This works in Gvim, and also in vim, but I suppose vim depends on how your terminal is set up. I've done nothing special to my terminal or my vim.
Use Ctrl-o in insert mode to dip into normal mode for just 1 command. Also, use Ctrl-r in insert mode to paste the contents of an arbitrary clipboard (Ctrl-r, a to paste register "a, Ctrl-r " to paste register "" and so on).
Yes, I don't see these often and it seems that they are powerful learning aids. Full-fledged videos/screencasts are hard to search and index while screenshots are bad to show actions.
Everyone uses vim in their own way, you should learn how to use vim for the style that suits how you work. Only learn what you need to learn, you can't learn everything. No one knows all of vim; if you say that you do, you are a liar.
One thing to note though: Y and yy are not shortcuts to 0y$ -- the latter does not yank the line ending. I use it to insert one line into another, but find splitting and joining lines to be cumbersome.
When I learned to use vim years ago, one interesting observation was that the biggest thing to learn in vim is efficient navigation.
i.e. if you know how to get to a particular logically defined place in the file, you will always be able to carry out copy-paste-delete to and from that place to where to cursor is.
One would be surprised how easy thing become once you know the basic navigation rules due to marvelous mix-n-match nature of vim operations.
As someone who works on large .NET / Java / RoR projects, would I gain anything from switching to vim from say, VS 2010, Eclipse and RubyMine? I'm quite used to relying on visual IDEs, but if vim is supposed to make me incredibly productive then I'd certainly like to explore that option.
Anybody here made the switch and felt it was worth it?
The one thing that made me switch was the many different text files I was editing. vim makes editing text files very easy and there almost always a syntax file for the type of file you are editing.
I use vim so that even though I may be editing C++, Ruby, YAML, JavaScript, Python, HTML, and CoffeeScript in the same day, I can still use the same editor and shortcuts across all the different types of text files. Also, vim is always one of the first editors to get syntax files for a new language.
If you only do ASP all day, VS is worth sticking with.
There are tradeoffs. In my opinion, the text-editing advantages that vim gives me greatly outweigh the advantages that an IDE has over vim. If you haven't used vim before and you switch now, you will not see it as a favorable tradeoff for a while until you get the hang of it. Using vim for all these things requires a command-line friendly mindset for all of the non-text-editing tasks like building, running, searching directories, etc. Really it's not IDEs versus vim, but rather IDEs versus vim + command line.
Some things I give up to use vim over IDEs:
* A nice graphical debugger
* Superior support for symbol lookup (ctags isn't perfect)
* Superior support for autocomplete (given the above)
* Automagical refactoring support (I think these features are way overrated, and many of the most common edits fall under vim's domain)
* Boilerplate generation (even given the copious amounts that Java requires, I've always thought that this was a code-reading problem rather than a code-writing bottleneck)
* Compiler errors as you go
* WYSIWYG GUI design (you could just fire up the IDE when you need this anyway)
Is it possible to have it all at once? Would a plugin for VS/Eclipse/whatever like the other poster suggested allow you to use a vim approach with all of the benefits of a cushy IDE?
I have a feeling that once you learn vim, you'll want this plugin, because it will be infuriating not to have it once the muscle memory is in place. However, I doubt you'll find it even remotely useful unless you've put in the time to learn vim on its own.
I actually just made somewhat of an opposite transition. I've been an Emacs guy for a while, and just started using a visual IDE. There are certainly things I like about having an IDE, mostly when it comes to building projects, browsing code, and doing GUI stuff.
However, when it comes to doing some real coding, I always go back to Emacs. After learning a really good text editor, you don't even have to think about doing complex things with the text, you just get into a zen mode, and the cursor does what you want. Combine that with easy access to any shell/interpreter you're using and it makes for a very productive way to just write some code.
I've been using Vim for about three years but I've never been very handy at it. I'm now wondering that that might be because I touch type with only four fingers and whether it's possible to relearn my typing methods.
One hint I have not seen here: while in input mode use <Cntl>n to auto-complete the word you are typing. This is very good for longer variable names and ensures your name matches what you have typed already.
Does anyone know why the decision was made to make hjkl the vi navigation buttons? I've always felt like jkl; would be faster since your fingers are already there
I have jj mapped to exit from insert mode and save the file. This trick was found in a long SO thread, plus I never had the need to type something with a double j ;)
I don't even think about it, but apparent pivot on my wrist to hit the 'Esc' key (top left of my keyboard) with my middle finger, rather than my pinkie as would be prescribed by a strict "home row" typing style.
I find emacs's ctrl-meta-foo-bang key combinations to be far more stressful (you have to hit multiple keys in one swell foop) than vi/vim's modal just-one-key-at-a-time standard keystrokes.
Control-[ is the best way to move into command mode. It fits the vi philosophy better than ESC. When hitting ESC you have to lift your hand off the home row. After years of using vim, using ESC feels as inefficient as using arrow keys instead of hjkl.
Agreed. I'm fairly proficient in VIM, and I'd love to extend my knowledge of emacs as well - but there's few tutorials that don't start with "change these 15 settings and install these 5 plugins, then use it like this..."
I've tried the evil mode : emacs now behave like vim in text edit mode, with nearly less complication than installing a plugin for vim. Can be found here : http://gitorious.org/evil/pages/Home
I'm not sure where those terms come from. "insertion mode" is described by the Vim documentation as "insert mode", because what you type on the keyboard is inserted into the document. "edition mode" might be a typo or English-as-a-second-language mistake for "editing mode" because that's what you do in that mode; Vim's documentation just calls it "normal mode".
Because vim's paste command, p, will paste what was last removed with a command (such as d or c).
Although you're not explicitly told that d and y are analogous to cut and copy, after learning the mechanics of p, each command you learn adds a new (and powerful!) mechanic which doesn't have a parallel in the normal cut/copy/paste model.
That's not true. You get all the keybindings of Emacs in insert mode, and you get all the keybindings of vi in command mode. vi and vim are different enough that experienced vim users cannot use vi at all. I know, because I've invited them to try.
(Incidentally, mg is pretty easy to use as an Emacs users. The only odd thing is that ENT does not end an isearch, because mg thinks C-m and C-j are the same thing. What?)
That's why I scan every beginner vim tutorial that comes across hn. I always learn something