vote up 6 vote down star
8

I want to start using vim as my text editor for PHP, what do you guys suggest as good tutorials for not only using vim but also in a project sense?

flag

18 Answers

vote up 6 vote down check

The Vim book, published years ago and now out of print, is available as a pdf.

link|flag
vote up 13 vote down

Here is your 5 minute tutorial. The easiest way to learn vi is to know what the letters stand for:

y(ank) - copy
d(elete) - delete
c(hange) - change
p(aste) - put from buffer after cursor
o(pen) - start a new line
i(nsert) - insert before current character
a(fter) - insert after current character
w(ord) - moves to beginning of next word
b(ack) - moves to beginning of current word or prior word
e(end) - moves to end of current word or next word
f(ind) - moves to a character on the current line
movement keys you just need to learn: h,j,k,l

^ - beginning of text on a line
$ - end of text on a line
0 - first position on line

most commands can be prefaced with numeric modifiers.
2w - means move 2 words
5h - means move 5 charcters to the left
3k - means move 3 lines up
3fs - means move to the 3rd letter s folling the cursor

modification commands (d,c,y) need to know how much to work on.
dd - delete a line into memory
yy - yank a line into memory
cc - change the whole line
c$ - change from current position to the end
c2w - change the text spanning the next 2 words
3dd - delete 3 lines
d2f. - delete to the second period.

. - means redo the last modification command.
/ - searches for text, and then n(ext) will go the next found occurance. N will go prior.
? - searches backwards through the document.

You now should be able to use basic vi effectively. Just remember to hit ESC before each command.

Basic ex commands:
:w myfile.txt  - save current file as 'myfile.txt'
:q  -  quit the document
:q! - REALLY QUIT w/o saving
:w! myfile.txt - try to force saving to 'myfile.txt' even if there are warnings
:wq - write out the current document and quit
:r [filename]  - read filename into the current document
:w %.old - write the current file as  [originalfilename].old
:0 - go to the opt of the document
:22 - go to line 22
:$ - go to the bottom of the document

Next you should learn m(arks) - place holders in the current doc.
ma - mark the current line as 'a'
mb - mark the current line as 'b'
'a - go to mark a
y'a - yank all the lines from the current position to mark-a

y'akpkpkp - yank all lines to position a, go up a line, paste, up a line, up a line, paste. You've just taken a block of text and replicated it 3 times.

You no longer need a tutorial, now you just need reference material on other vim commands and options. I would advise reading up on splitting windows, vi regex, and you should be all set.

link|flag
1  
d doesn't really do delete but does what you would be called in nearly every other program "cut". It took me a while to figure that out :( – Christian Aug 1 at 21:34
vote up 4 vote down

If you really want to become good at vim, just start using it. Force yourself to use it, and nothing else. Inevitably you will start to become efficient at it.

And if you really want to feel like a hacker, use Ctrl+Alt+F1 to turn off your display manager and use the tty interface to use vim. Then when you need to browse the web for documentation, press Ctrl+Alt+F2 to switch to another tty and use lynx. (You can do this with F3 and F4 too.)

A good thing to do would be read an overview of vim, so you know somewhat what features are available to you, and then as you feel constricted and think, MAN, I need to be able to do this quickly, look that feature up. Then you will remember it, because you needed it, and it was there, and it was useful.

Do this enough and you'll find you can hack away at top speed with vim.

link|flag
vote up 4 vote down

I remember Vim has an excellent build-in tutorial with exercises and advices! Just look for help inside Vim itself!

link|flag
vote up 3 vote down

http://blog.interlinked.org/tutorials/vim_tutorial.html is pretty good for a vim basic tutorial and overview of the modes (important concept!).

http://www.scribd.com/doc/263139/VIM-for-PHP-Programmers has some good information too, some of which is more programmer-oriented.

link|flag
vote up 3 vote down

Here's a vim cheatsheet. http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html

Hope it helps!

link|flag
vote up 3 vote down

I have had an excellent experience learning all the commands from Jonathan McPherson's vim guide. It is to the point, has good advice on some more fundamental usage, and lots of useful commands.

link|flag
vote up 3 vote down

In most *nix installations you can just run 'vimtutor'. It starts a tutorial that lets you try out vim.

link|flag
vote up 3 vote down

I've been checking David Rayner's site for nearly 2 years now, and I've learned more useful vim tricks from there than any other source I can think of. It's regularly updated with additions and refinements.

In terms of IDE style extensions/plugins, I use:

  • SuperTab: smart tab-completion (builds list from currently open buffers)
  • VCSCommand: Integrates CVS (amongst other) source control systems directly into vim.
  • MultipleSearch: Allows multiple search strings to be highlighted (in separate colours) within the same buffer. A lot more useful than it sounds!
  • Taglist: (uses exuberant-ctags) Builds a list of functions, and gives you a side-pane with a summary of these for every buffer you have open, with quick navigation from there.

Obviously, the above all rely on vim, rather than vi. I've always found that the cross-over between vi and vim is sufficient that I am proficient in vi when forced to use it on remote boxes.

Another useful tool is vimdiff: it gives great side-by-side diff utils, and easy bi-directional copying of content between the files (run ":help diffget" in a vim session for more on this). Unfortunately, I've never found a decent way of incorporating vimdiff with CVS... If anyone else has, there's a question here where you can answer my plea.

link|flag
vote up 2 vote down

I'm still looking for a good tutorial (or software package) that helps you use vim "in a project sense". (read: with features found in most modern IDEs)

The Project plugin adds some functionality to handle navigation between projects and stuff, but I'm still most comfortable using vim as a single-file editor (unless I want to open up a 2nd or 3rd window to compare/copy code between files).

For general vim guidelines, here's a quick reference and here's a more descriptive tutorial.

link|flag
vote up 1 vote down

jdecuyper has the idea. I don't know what platform you're on, but if you're doing it on a *nix box, run 'vimtutor' to get the interactive tutorial (well okay, it's a text file, but you'll learn!).

If you want to learn the direction keys, play Nethack using the traditional keyset.

link|flag
vote up 1 vote down

General text editing information: Vim: Seven habits of effective text editing by Bram Moolenaar, creator of Vim.

Also the vimtutor, that's included with Vim.

link|flag
vote up 0 vote down

I think we'd need to know what "in the project sense" means and how it relates to vim. Do you mean integrating it with your source control and build/deployment system?

link|flag
vote up 0 vote down

I think we'd need to know what "in the project sense" means and how it relates to vim. Do you mean integrating it with your source control and build/deployment system?

Pretty much along those lines. I'm using Eclipse right now which works great but is a memory hog. A lot of times I end up working directly on the dev servers anyway (especially if I'm remote) so if I just have to move a vim config file around, all the better.

link|flag
vote up 0 vote down

Linux is a nice IDE.

link|flag
vote up 0 vote down

The best way I know to learn vim is by watching the vi / vim video tutorial

link|flag
vote up 0 vote down
vimtutor
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.