Ottenga iniziato a usando il sistema di editazione testi Vim

da Sukrit Dhandhania su 31 dicembre 2008

Linux Mac Windows

Vim è uno della linea di ordine più potente e più popolare sistemi di editazione testi intorno. Era inizialmente soltanto disponibile per il Linux e le piattaforme dell'UNIX, ma allora ported a Windows inoltre. L'interfaccia è pulita e semplice ed usate una combinazione delle chiavi per effettuare le mansioni quale copia-colla, ricerca e sostituire, cancelli un mazzo di linee e molto più.

Vim viene preinstallato con la maggior parte delle distribuzioni di Linux e sull'OS del Mac. Nel caso non lo avete o non desiderate installarli su un'altra piattaforma potete ottenere l'installatore da?qui. Per gli utenti di Windows dovete andare?qui?e trasferisca l'ultimo rilascio dal sistema centrale verso i satelliti di Vim. Trasferisca la lima dal sistema centrale verso i satelliti di chiusura lampo per la vostra versione di Windows ed estraggala. Allora faccia funzionare l'installatore. L'unica cosa differente fra la versione Mac/di Linux di Vim e la versione di Windows è che la versione di Windows funziona nella relativa propria finestra grafica. Diamo un'occhiata più vicina al relativo uso.

Prima che otteniamo all'uso reale di Vim lascilo brevemente spiegare a voi i due modi in che funzionamenti Vim - ordine e inserto modo. In ordine modo date le istruzioni a Vim per intraprendere una certa azione, quale cancellazione una linea, o cercate una parola. Quando siete in inserto il modo che cosa a macchina scrivete va dentro come testo nel documento che state pubblicando. Quando lancio Vim voi siete in ordine modo. All'interruttore a inserto il modo ha colpito chiave del `l'i' sulla vostra tastiera. Vedrete una notifica alla parte inferiore a sinistra del vostro schermo come questa:

- INSERTO -

Ciò significa che potete ora cominciare a pubblicare la lima. All'interruttore di nuovo al ordine il modo ha colpito appena la chiave di fuga. Troverete che “- INSERTO -„ la notifica alla parte inferiore sparirà. Siete ora in ordine il modo e può insegnare a Vim per cancellare una linea, o per conservare la lima, o qualunque potete desiderare per fare con il documento.

Per aprire una lima o una a attuale per generare un nuovo con Vim uso la seguente sintassi:

# vim helloworld.txt

Se apriste una lima attuale dovreste vedere il relativo soddisfare, o una pagina in bianco se generaste un nuovo. Ora prima che procediamo a usando Vim, vediamo come annullare Vim. This is important because, unlike your standard graphical text editor, you cannot close the window to shut the application. To exit Vim and return to the command line you need to enter the following key combination:

ESC :q ENTER

In plain English the above command goes something like this, “Escape key, then a colon, followed immediately by a ‘q’, and then the Enter key to finish”. The “q” here stands for “quit”. What Vim does here is that it exits without saving any changes you may have made to the file. To save the file and quit add the ‘w’ or “write” option:

ESC :wq ENTER

You can also use the ‘w’ option without the ‘q’, if you just want to save the file while editing it and not quit Vim.

Now that we know how to get in an out of Vim let’s see how to use it. Let’s create a new document with Vim and begin writing:

# vim newdocument.txt

Now hit ‘i’ on your keyboard to get into the insert mode. Write a few lines of text in the file. Once you are done hit the Escape key to go into the command mode, and then “:wq” to save and exit the file. Now let’s see if the file was written correctly. Windows users can open the document we created using Notepad. If you are using Linux or a Mac run the following command to check out the contents of the file:

# cat newdocument.txt

You should see the contents of the file you just created. Now open the same file using Vim and let’s see what more Vim do do. Let’s delete a few words and lines. While in command mode navigate you cursor to he beginning of a word and hit the key combination “dw” followed by Enter. This should delete the word. Now let’s delete a whole line. Pick a line you want to delete and take the cursor to any location in that line and hit the key combination “dd” followed by Enter. Line deleted.

Sometimes you make a mistake that you want to undo, say you want to bring back the line you just deleted. To undo your last action go to the command mode and hit the key “u”. You can continue hitting “u” to undo more changes.

These commands will get you started with Vim. Practice what you learned here. I will return with more cool stuff such as finding and replacing words, searching a text, and more.

A quick recap of the commands you learned here:

1. Save file - “:w”
2. Quit file without saving - “:q”
3. Save and quit file - “:wq”
4. Go into insert mode - “i”
5. Go into command mode - ESC
6. Delete word - “dw”
7. Delete line - “dd”
8. Undo change - “u”

Related Posts:
  • How to edit iPhoto images using another application
  • How to use your Home folder as your Desktop in Ubuntu
  • Overview: CoolMon 2 - a Windows system monitoring utility
  • How to disable the balloon tips in Windows XP
  • How to edit the right-click context menus in Firefox
  • Get Simple Help tutorials just like this one in your email inbox every day - for free! Just enter your email address below:

    You can always opt out of this email subscription at any time.


    Bookmark and Share

    { 1 comment… read it below or add one }

    1 James 12.31.08 at 12:04 pm

    Come on ! Is there someone who still use vi (& its clones) ? There’s hundred of editors out there who can ease much more the work for a writer…!!!

    Yeah, I know you can do more with Vi than any other editor, but believe me you still have to memorize a bunch of keyboard keys…

    Leave a Comment

    You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>