En Vim, si escribe :help
en la barra de estado, aparece una ventana con esto (contenido truncado en los bits relevantes):
*help.txt* For Vim version 7.4. Last change: 2012 Dec 06
VIM - main help file
...
USER MANUAL: These files explain how to accomplish an editing task.
Jump to a subject: Position the cursor on a tag (e.g. |bars|) and hit CTRL-].
|usr_toc.txt| Table Of Contents
Getting Started ~
|usr_01.txt| About the manuals
|usr_02.txt| The first steps in Vim
|usr_03.txt| Moving around
|usr_04.txt| Making small changes
|usr_05.txt| Set your settings
|usr_06.txt| Using syntax highlighting
|usr_07.txt| Editing more than one file
|usr_08.txt| Splitting windows
|usr_09.txt| Using the GUI
Digamos que quiero ver más información sobre este elemento |usr_07.txt|
, ¿qué comando debo escribir?
Intenté esto:
Saltar a un tema:coloque el cursor en una etiqueta (por ejemplo, |barras|) y presione CTRL-].
Pero mi ventana de terminal ha asignado ctrl -
para "disminuir el texto".
Respuesta aceptada:
Puedes usar
:help usr_01.txt
para acceder a un archivo específico. Por lo general, es más útil saltar a un tema en particular:
:help syntax
:help wq
:help CTRL-]
Esto último señala que también puede usar Ctrl-Click con el mouse, y hacer doble clic también funciona.
También puedes usar g]
para acceder a tagselect, que ofrece una lista que puede seleccionar con solo números y Enter . En muchos casos, será una lista de un elemento, pero aún evita usar Ctrl-] en cualquier momento.
Algunos otros comandos que podría usar para seguir estos enlaces también se enumeran en :help tagsrch.txt
.