vimnox <===> editor Vim (bez závislosti na X)

Normal mode

Normal mode allows you to give commands to the editor. Functions such as the following can be found here:

:w to write/save.

:q to quit.

:w <filename.txt> to name a new file.

:q! to quit without saving the changes to the file

Press the Esc key to start the Normal mode and enter :(desired command) [Enter] to perform your intended task. For example, if I was working in a new file and wanted to name it 'file.txt', I would use the following: 

:w file.txt [ENTER]