The best text editor: Vim
Posted by in LinuxVim is the best text editor, i have ever used. I’m using vim while coding with pyton,html and css.
How to install vim
sudo apt-get install vim vim-common vim-gnome
Usage and some features
You can open a file with using: vi open_me.txt
- Command mode: letters or sequence of letters interactively command vi. Commands are case sensitive. The ESC key can end a command.
- Insert mode: Text is inserted. The ESC key ends insert mode and returns you to command mode. One can enter insert mode with the “i” (insert), “a” (insert after), “A” (insert at end of line), “o” (open new line after current line) or “O” (Open line above current line) commands.
- Command line mode: One enters this mode by typing “:” which puts the command line entry at the foot of the screen.
there are some usefull commands, i took the image from “Learning the vi and Vim Editors” books. You can look over if you want.
Related posts
You can follow any responses to this entry through the RSS 2.0 You can leave a response, or trackback.

