diff options
author | Kyle Mendes <kyleamendes@gmail.com> | 2017-10-27 15:51:05 -0400 |
---|---|---|
committer | Kyle Mendes <kyleamendes@gmail.com> | 2017-10-27 15:56:06 -0400 |
commit | 437adfa5a4f07dfbae9e54c258fb0f8815a6c2dc (patch) | |
tree | 3f5e64e5001019fbd3e638e121d2d9d31e72c54d /vim.html.markdown | |
parent | 6800d632b179661a8902db748fea50b7012e8208 (diff) |
Adding help documentation
Diffstat (limited to 'vim.html.markdown')
-rw-r--r-- | vim.html.markdown | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vim.html.markdown b/vim.html.markdown index 6fc52564..15144b8d 100644 --- a/vim.html.markdown +++ b/vim.html.markdown @@ -17,6 +17,7 @@ specific points in the file, and for fast editing. ``` vim <filename> # Open <filename> in vim + :help <topic> # Open up built-in help docs about <topic> if any exists :q # Quit vim :w # Save current file :wq # Save file and quit vim @@ -73,6 +74,15 @@ specific points in the file, and for fast editing. L # Move to the bottom of the screen ``` +## Help docs: + +Vim has built in help documentation that can accessed with `:help <topic>`. +For example `:help navigation` will pull up documentation about how to navigate +your workspace! + +`:help` can also be used without an option. This will bring up a default help dialog +that aims to make getting started with vim more approachable! + ## Modes: Vim is based on the concept on **modes**. |