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?
|
|
closed as not constructive by jamylak, Jay Riggs, casperOne♦ Aug 2 '12 at 12:48
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The Vim book, published years ago and now out of print, is available as a pdf. |
|||
|
|
|
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) - cut c(hange) - replace p(aste) - put from buffer after cursor o(pen) - start a new line i(nsert) - insert before current character a(ppend) - insert after current character w(ord) - moves to beginning of next word b(ack) - moves to beginning of current word or prior word e(nd) - 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 characters 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 top 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. |
|||||||||||||||
|
|
In most *nix installations you can just run 'vimtutor'. It starts a tutorial that lets you try out vim. |
|||||
|
|
See the following Vim tips. Vim Tips and Tricks Save and quit
Moving the Cursor
Inserting Text
|
||||
|
|
|
Here's a vim cheatsheet. http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html Hope it helps! |
|||
|
|
|
Searching
Create a new file for each line of file eg 1.txt,2.txt,3,txt etc
gf : open file name under cursor (SUPER :nnoremap gF :view : open file under cursor, create if necessary :history : list of all your commands :his c : commandline history :his s : search history q/ : Search history Window (puts you in full edit mode) (exit CTRL-C) q: : commandline history Window (puts you in full edit mode)(exit CTRL-C) Function to delete duplicate lines
|
|||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
I remember Vim has an excellent build-in tutorial with exercises and advices! Just look for help inside Vim itself! |
|||
|
|
|
General text editing information: Vim: Seven habits of effective text editing by Bram Moolenaar, creator of Vim. Also the |
|||
|
|
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:
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Anyone else looking to learn Vim should check out the Open Vim website. It is a fantastic resource for any newcomer to Vim. It has an interactive tutorial and various sandbox modes for playing with the editor. Have fun! |
|||
|
|
|
Once you have mastered the basic vim commands, I would highly recommend reading the following blog entry: http://blog.carbonfive.com/2011/10/17/vim-text-objects-the-definitive-guide/ It will help you visualise vim commands in the following format:
With this in your conscious, and a bit of practice, you'll be much more expressive and efficient with your text-editing in vim. |
|||
|
|
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. |
|||
|
|
|
The best way I know to learn vim is by watching the vi / vim video tutorial |
|||
|
|
|
Check this : http://blog.interlinked.org/tutorials/vim_tutorial.html It is quite comprehensive and clean. |
|||
|
|
|
If you want a sort of fun way to practice your agility, check this out: I have found 'The Vi and Vim Editors', by O'rielly Press very useful. |
|||
|
|
|
For learning basic movement in a game setting: http://www.kikuchiyo.org in Firefox or Chrome. Click on the 'train first' link to get a feel for it. Then try the 'help me find a home' link. Music has been glitchy lately... |
|||
|
|
|
Check this VIM game, its plain awesome: http://vim-adventures.com/ It's the "Zelda meets text editing" game. Beat the game to master VIM. I finished 2 levels, 3rd under development it seems. Also check this. Its good: http://www.openvim.com/tutorial.html |
|||
|
|
|
||||
|
|
protected by Raghav Sood Apr 8 at 19:45
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

