VimTutor+
About
Install Vim
Exercises
Inserting Text
/** * WELCOME TO VIMTUTOR+ * * When you first start Vim, you begin in 'Command Mode' * In command mode all your keys are mapped to special shortcuts so you * cannot insert text as you normally would. To start inserting text, press 'i' and you * will enter 'Insert Mode.' This mode behaves almost exactly like other text editors. * For now, press 'i' to enter Insert Mode, add some text and move about with your * arrow keys and mouse. * * To return to Command Mode, press 'esc' (your cursor will blink green again) * **/
Previous: Installing Vim
Next: Cursor Movement 1