Difference between revisions of "Vim"

From HPC Wiki
Jump to navigation Jump to search
m
m
Line 3: Line 3:
 
== General ==
 
== General ==
  
Vim is a visual text editor that can be run inside a [[shell]]. This has the advantage, that you can quickly write or edit text files in the [[shell]], even over an [[ssh]] connection without graphical user interface. An alternative to using a shell-based editor over [[ssh]] is to transfer the file in question via [[scp]], [[ftp]] (or [[File-Transfer|Getting_Started#File_Transfer_or_How-to-get-your-data-onto-or-off-the-supercomputer]] in general) then use an editor or IDE with a graphical user interface (like Notepad++, VSCode, or whatever you fancy) locally and after that transfer the file back to the remote (super)computer again.  
+
Vim is a visual text editor that can be run inside a [[shell]]. This has the advantage, that you can quickly write or edit text files in the [[shell]], even over an [[ssh]] connection without graphical user interface. An alternative to using a shell-based editor over [[ssh]] is to transfer the file in question via [[scp]], [[ftp]] (or [[Getting_Started#File_Transfer_or_How-to-get-your-data-onto-or-off-the-supercomputer|File-Transfer]] in general) then use an editor or IDE with a graphical user interface (like Notepad++, VSCode, or whatever you fancy) locally and after that transfer the file back to the remote (super)computer again.  
  
 
While it's usage is far from intuitive, a few basics are generally helpful. For a more complete coverage of this editor, why people use it and why you should probably do that too, please look at the Vimtutor, the references or the internet in general. There are lots of good resources out there concerning vim.
 
While it's usage is far from intuitive, a few basics are generally helpful. For a more complete coverage of this editor, why people use it and why you should probably do that too, please look at the Vimtutor, the references or the internet in general. There are lots of good resources out there concerning vim.

Revision as of 15:24, 28 February 2018


General

Vim is a visual text editor that can be run inside a shell. This has the advantage, that you can quickly write or edit text files in the shell, even over an ssh connection without graphical user interface. An alternative to using a shell-based editor over ssh is to transfer the file in question via scp, ftp (or File-Transfer in general) then use an editor or IDE with a graphical user interface (like Notepad++, VSCode, or whatever you fancy) locally and after that transfer the file back to the remote (super)computer again.

While it's usage is far from intuitive, a few basics are generally helpful. For a more complete coverage of this editor, why people use it and why you should probably do that too, please look at the Vimtutor, the references or the internet in general. There are lots of good resources out there concerning vim.

Vim Modes

In Vim there are two modes. Normal mode and Insert mode. You switch to normal mode with the 'ESC' key and into insert mode by pressing 'i'. Insert mode works more or less like you would expect a normal text editor to work with arrow keys, backspace and typing deleting/producing characters.


Save/quit/help

From normal mode (press Esc to get there) you can type


:q to quit vim
:w to save the current file
:q! to quit vim without saving (discarding changes)
:x to quit vim with saving changes

For a tutorial you can call the

$ vimtutor

and follow the instructions on screen.


References

Interactive Vim Tutorial

Vim/Guide in the Gentoo wiki

Vim Game