http://linuxcommand.gds.tuwien.ac.at/man_pages/vimtutor1.html

Someone recommended I use vimtutor to learn the basics of Vim. But I have no idea how to use it. Is it an application? A website?

That's the only link that was given during the discussion here and I can't find a link to anything.

Any suggestions?

link|improve this question
You asked for suggestions... my suggestion is to learn emacs instead :D – Rafe Kettler Feb 15 '11 at 23:46
feedback

migrated from stackoverflow.com Feb 16 '11 at 10:06

This question came from our site for professional and enthusiast programmers.

3 Answers

up vote 8 down vote accepted

Yes, vimtutor is literally the name of a program that runs you through a tutorial for vim. If installed on a Unix environment, that command should be sufficient. On windows, there's an entry in the start menu folder just titled "Vim tutor" which is a shortcut for vimtutor

link|improve this answer
So I guess my question is, how do I even install it? There is no link on the website. – Sergio Tapia Feb 16 '11 at 0:02
2  
It comes with Vim. If you've installed Vim successfully, you've installed vimtutor as well. – Daniel DiPaolo Feb 16 '11 at 0:04
feedback

vimtutor is a program that usually gets installed when you install the normal vim/gvim package. You should be able to just run "vimtutor" on the command line, assuming that it got built and installed correctly, and is on your path, etc... If you can't run it on the command line, or it doesn't work for you, you'll have to do some digging to figure out why. In my experience vimtutor doesn't always work as expected. I would start by looking in the install folder for Vim, and see what you can find.

At its core, it's basically just a text file that has some examples that walk you through the basic commands available in vim. It shows you have to navigate using the keyboard, how to edit text, and use some other basic commands. If you can't get vimtutor to work immediately, you can either just keep messing with it, do some more searching (there are plenty of results when you search for vimtutor in google) or just give up on it and learn vim using another type of tutorial. Vimtutor is fairly limited anyway, so it's definitely not that important to get working.

link|improve this answer
feedback

How have you installed Vim?

Some packages will not include vimtutor; eg vim-tiny on Debian GNU/Linux does not include the program as it's probably not considered a core part of a minimal vim distribution. :-)

You didn't say what platform you are on but based on the link you referenced, I at least assume some Linux distribution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown