Vim es uno de la línea de comando más de gran alcance y más popular editores de textos alrededor. Estaba inicialmente solamente disponible para el Linux y las plataformas del UNIX, pero después fue virado hacia el lado de babor a Windows también. El interfaz es limpio y simple, y usted utiliza una combinación de llaves para realizar las tareas tales como copia-goma, búsqueda y substituir, suprima un manojo de líneas, y mucho más.
Vim viene instalado previamente con la mayoría de las distribuciones de Linux y en el OS del Mac. ¿En caso de que usted no lo tenga ni desee instalarlo en otra plataforma usted puede conseguir el instalador de?aquí. ¿Para los usuarios de Windows usted necesita ir?¿aquí?y descargue el lanzamiento más último de Vim. Descargue el archivo de cierre relámpago para su versión de Windows y extráigalo. Entonces funcione el instalador. La única cosa diferente entre la versión de Linux/del Mac de Vim y la versión de Windows es que la versión de Windows funciona en su propia ventana gráfica. Hechemos una ojeada más cercano su uso.
Antes de que consigamos al uso real de Vim déjeme brevemente explicar a usted los dos modos en los cuales los funcionamientos Vim - comando y relleno modo. En comando modo usted da instrucciones a Vim de tomar una cierta acción, tal como cancelación una línea, o busca para una palabra. Cuando usted está en relleno el modo qué usted mecanografía entra como texto en el documento que usted está corrigiendo. Cuando usted el lanzamiento Vim usted está en comando modo. Al interruptor a relleno el modo golpeó llave del `el i' en su teclado. Usted verá una notificación en el fondo a la izquierda de su pantalla como esto:
- RELLENO -
Esto significa que usted puede ahora comenzar a corregir el archivo. Al interruptor de nuevo a comando el modo acaba de golpear la tecla de escape. Usted encontrará que “- RELLENO -” desaparecerá la notificación en el fondo. Usted ahora está en comando el modo y puede mandar a Vim para suprimir una línea, o para ahorrar el archivo, o lo que usted puede desear para hacer con el documento.
Para abrir un archivo o una a existente para crear un nuevo con Vim uso el sintaxis siguiente:
# vim helloworld.txt
Si usted abrió un archivo existente usted debe ver su contenido, o una página en blanco si usted creó un nuevo. Ahora antes de que procedamos con usar Vim, déjenos ven cómo dar salida a 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”






























{ 1 comment… read it below or add one }
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