diff --git a/vim-commands b/vim-commands index 7d7e146..6722932 100644 --- a/vim-commands +++ b/vim-commands @@ -97,3 +97,24 @@ Line mode: :q! is used to force quit the vim even if the changes on files are not saved. + +-> help command (for vim documentation): + + :help : It will open vim documentation. + + :help [command] : It will open documentation to a specific location where + the specification for that specific command is present. + + :help {subject} : It will open documentation to a specific location where + the specification for the given subject. + + :h : It is a short cut for :help in line mode. + + (CTRL+w) + (CTRL+w): It is used to switch b/w windows currently open in vim + for editing. + + (CTRL+o): Take you to the location where the previous search is done in the + document. + + (CTRL+i): Take you to the location where the next search is done in the + document.