Task 2

Lets get used to using Vim for basic text editing...

Modes

There are three basic modes in Vim:

These form the pillars of navigating and using Vim. Try and answer the questions and work out how to begin creating a basic text document in Vim.

Navigation

Now that you know how to start creating a text document, you're going to need to know how to navigate it.

Hint, focus on key clusters, not combinations of keys for this.

Inserting Text

Now you're comfortable in basic typing and navigating the document, lets get into using vim in a more powerful way!

The shortcuts for appending and inserting are crucial, I suggest trying to implement them into your typing routine so that they really stick.

FOR HELP WITH THE QUESTIONS

The easiest way to ask for help is to start with executing :help during a Vim session. This will drop us into the main help file which has an overview of the basics.

To get help with a specific command, we can provide that command as an argument to the :help command. By invoking :help gg, we learn more details about gg including that does the same thing and that by providing a [count], we can use gg to jump anywhere in a file.