What are the essential vim commands? What does a new-user need to know to keep themselves from getting into trouble? One command per comment, please.
|
|
I have been keeping a Vi Reference Card with me for years. It is very useful. |
|||
|
|
|
What I find irreplaceable (because it works in vi also, unlike vim's visual mode) are marks. You can mark various spots with These movements can be used as arguments to commands (yank, delete, etc). For example, you want to delete 10 lines; instead of counting and then moving to the topmost line and entering |
||||
|
I was very happy the day I learned about using * or # to search, down or up respectively, for the word under the cursor. Make sure to |
||||
|
|
|
|
|||
|
|
|
When you have some repetitive action to take Macros are usually faster than regex. Just type
Many people use
because it's fast. Press q in normal mode again to stop recording. Then just type
to repeat what you just recorded.
for the example like above. Edited to add: you can also repeat the macro. Let's say you programed a macro to jump to the head of a line, insert a tab, and then jump down one line. You then test your macro by typing "@q" to run it once. Then you can repeat the action nine more times by typing "9@q". |
||||
|
|
I guess those are the basic one to start from |
|||
|
|
|
Use the 'J' (J for Join; upper-case) command to delete the newline at the end of a line. You'll find it tricky otherwise. |
|||
|
|
|
This recent Vim tutorial from IBM is pretty good |
|||
|
|
|
First of all you need to know how to close vi: ctrl-c : q! Rest can be found from vimtutor. Launch vimtutor by typing vimtutor at your command line |
|||
|
|
|
Although this is a matter of personal preference I've found that one of the essential things to do is to remap Esc to something else. I find it very uncomfortable to reach for the Esc key to exit insert mode, but the beautiful thing about Vim is that allows key mappings. I'm currently using the following mapping using
This has the advantage of being a key mapping I have already commited to memory and has the added value of saving my work every time I go to normal mode. Yeah, I know it is crazy but I would be hitting the save command that frequently anyway. It's like a bad habit, you know. |
|||||
|
|
|||
|
|
|
If you're using vim, the 'u' command (in command mode) will Undo the last command you typed. You can use this command repeatedly to undo mistakes you may have made before saving the file. |
|||
|
|
|
See http://www.rayninfo.co.uk/vimtips.html for a great collection of Vim tips, from the basic can't-live-without to very sophisticated stuff that you might never have thought of trying. |
|||
|
|
|
Lots of great commands are listed at the Vim Tips Wiki. |
|||
|
|
|
My biggest tip: ctrl+q saves the day when you accidentally hit ctrl+s to save the file you are working on |
|||
|
|
|
alias vi nedit :) all humor aside.. for vi WHEN NOT using nedit..
but at this point you might as well
- While there are LOTS more, I switched from Vi to nedit several years ago, which I find has more features I can use on a regular basis more easily. Tabbed editing, incremental search bar, column select, copy and paste. sort selected lines, search and destroy within selection, whole doc or all open docs.. tear-off drop down menus.. and it supports syntax highlighting for all the languages I use.. (with pattern files I've used a long time over the years. VIM many now be equivalent, but It has to introduce a feature that Nedit doesn't and an easy way to migrate my pattern files before I switch again. |
||||
|
|
|
I like the Vim 5.6 Reference Guide, by Bram Moolenaar and Oleg Raisky. |
|||
|
|
Makes searching case-insensitive, unless your search includes a capital letter. Not the most indispensable perhaps, but I find myself setting this option any time I'm editing in a new place. It's in any vimrc file I own. |
||||
|
|
|
One of my favourite commands is %G which takes to directly to the end of a file. Especially useful in log-files. |
|||||
|
|
How to switch between modes (i to enter insert mode (one of many ways), esc to exit insert mode, colon for command mode) and how to save and exit. (:wq) |
|||
|
|
|
I use vi very lightly, and I only use the following commands: |
|||
|
|
|
Another useful command is to search something: / e.g. /Mon will search (and in case of vim highlight) any occurences of Mon in your file. |
|||
|
|
|
As a couple of other people have already mentioned, vimtutor is the way to go. It will teach you everything you need to know in vim. The one piece of general advice I would give you is to stay out of insert mode as much as possible. There is enormous power in the other modes, it just takes a little bit of practice to get used to it. |
|||
|
|
|
i - insert mode (escape to exit) dd - delete line shift-y - 'Yank' (copy) line p - 'Put' (paste) line(s) shift-v - Visual mode used to select text (tryin 'yanking' this text and 'putting' it somewhere. ctrl-w n - create new window (you can open a file or start new file here) ctrl-w v - split existing window vertically ctrl-n (in insert mode) - autocomplete (if supported) :! to run a shell command, usually with standard in as the file or a selection (shift-V) Useful plugins to look at: * Buffer Explorer - use \be to view files in the buffer (and select to re-open) |
|||
|
|
|
NB vi is not vim! vim is rapidly turning into the emacs of the new century. nvi is probably the closest thing to the original vi. Here's a nice hint: "xp" will exchange two characters (try it). |
|||
|
|
|
The real power is in the searching. Here are the essential commands: /Steve will find the first instance of "Steve" in the text. n will find the next "Steve" in the text. :%s//Stephen/g will replace all those instances of "Steve" you just searched for with "Stephen". Not to promote myself, but I wrote a blog post on this subject. It focuses on the critical parts of Vim for a beginner. |
||||
|
|
|
My favorites:
|
||||
|
|