views:

1154

answers:

11

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?

+3  A: 
:help

and

man man

is always a good start

Jesse Pepper
+2  A: 

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

Jesse Pepper
Make that h,j,k,l
Jeremy Cantrell
+1  A: 

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.

Sven
+1  A: 

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.

sykora
+1  A: 

Here is one about vi (or Vim) I bookmarked:

http://www.ts.vcu.edu/faq/unix/viquickreference.pdf

http://www.ts.vcu.edu/faq/unix/vieditor.html

jscoot
+2  A: 

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/.

mike
A: 

vimtutor is a good starting point for Vim beginners.

Vim documentation is pretty self-sufficient.

And Linux is not a command.

Anonymous
A: 

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

Alexander Gessler
A: 

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.

D4V360