up vote 14 down vote favorite
19
share [g+] share [fb]

As a Windows user, I found it difficult to master the Linux and Vim commands.

So are there some cheat sheets to look them up into quickly?

link|improve this question

52% accept rate
feedback

11 Answers

:help

and

man man

is always a good start

link|improve this answer
feedback

A blog dedicated to Vim where I have found some nice gems, "Daily Vim: Text Editor Tips, Tricks, Tutorials, and HOWTOs": http://dailyvim.blogspot.com/.

link|improve this answer
feedback

I have used this one (PDF) from http://tnerual.eriogerg.free.fr/vim.html and it's quite extensive and useful.

Another good one is this at: http://www.tuxfiles.org/linuxhelp/vimcheat.html. It has a little extra information about the commands.

link|improve this answer
feedback

Oh, and always navigate using H, J, K and L. That will get you in the best of habits.

link|improve this answer
Make that h,j,k,l – Jeremy Cantrell Jan 16 '09 at 17:45
feedback

I've always found that the best "cheatsheet" for vim is in the docs themselves:

:help toc
:help holy-grail
:help index

They're cross-referenced, and easily searchable.

For linux, the apropos command can be useful - it searches through all the manpages for a term that you give it. You can then use man to look further.

link|improve this answer
feedback

I've this one in my bookmarks. Very good to print it out.

link|improve this answer
feedback

Pretty lame but I tend to use history a lot.

history | grep 'part_of_the_command_i_still_remember_here'

For VIM I use : with the arrow keys a lot for older commands.

This is often faster as looking it up in some cheat sheet for me.

link|improve this answer
feedback

vimtutor is a good starting point for Vim beginners.

Vim documentation is pretty self-sufficient.

And Linux is not a command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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