maTeionE best viewed with NetSurf |
My programs | Games | Other programs | ||||||
GNU/Linux | Computers & programming | Music & movies | |||||||
Other topics | What's new + README | Contact | |||||||
--------------------------------------------------------------------------------------- | |||||||||
General
History
Terminal
Vi IMproved
Installation
Getting started
Fedora-14-i386
ROSA.FRESH.LXQT
|
Updated 2025-01-12 Vi IMproved text editor Vi is the default text editor that always comes with the GNU/Linux or UNIX operating system:
The help page says "Getting started: Do the Vim tutor, a 30-minute interactive course for the basic commands, see vimtutor.", so... :q<Enter>
A few commands in vi: vi file_1 file_2 ... file_n Opens n files and:buffers<Enter> or:files<Enter> displays the list of opened files.:n<Enter> /phrase<Enter> Searches for phrase. Then with n it searches it again, or with N - in the opposite direction.:%s/original/modified/g Modifies every occurrence of a text in the whole file.:set wrap<Enter> u Undo.v Visual. Select the text by pressing y after having chosen it with the arrows and then press p where you want to copy it. |
||||||||
--------------------------------------------------------------------------------------- |