Eu tento algum comando vim e descubro que o gh
comando iniciará um novo modo de comando, que aparece --select--
na minha tela. assim como o --visual--
modo de comando, este --select--
modo pode selecionar algum texto.
Quero saber mais sobre este modo de comando, então pressiono F1para mostrar o arquivo de ajuda do vim no vi.
como posso encontrar o gh
comando neste arquivo de ajuda?
Responder1
Em geral, para encontrar ajuda para um comando no Vim, use o modo de comando (aquele onde você digita :wq
para sair):
:help gh
Você pode pressionar Ctrldpara mostrar uma lista de possíveis conclusões depois de digitar isto,
:he gh
gh c_<Right> -menuheight zip-copyright match-highlight Vimball-copyright
ghc i_<Right> :belowright 'cmdwinheight' netrw-copyright <ScrollWheelRight>
'ghr' c_<C-Right> 'helpheight' 'nosplitright' 'nowinfixheight' <C-ScrollWheelRight>
g:ghc c_<S-Right> 'splitright' 'winfixheight' shift-left-right <S-ScrollWheelRight>
Como você pode ver, gh
está listado, então basta pressionar Enter:
gh
gh Start Select mode, characterwise. This is like "v",
but starts Select mode instead of Visual mode.
Mnemonic: "get highlighted".
Responder2
Use :h select-mode
e você verá a descrição do modo de seleção. Aqui um trecho:
==============================================================================
8. Select mode *Select* *Select-mode*
Select mode looks like Visual mode, but the commands accepted are quite
different. This resembles the selection mode in Microsoft Windows.
When the 'showmode' option is set, "-- SELECT --" is shown in the last line.
Entering Select mode:
- Using the mouse to select an area, and 'selectmode' contains "mouse".
'mouse' must also contain a flag for the current mode.
- Using a non-printable movement command, with the Shift key pressed, and
'selectmode' contains "key". For example: <S-Left> and <S-End>. 'keymodel'
must also contain "startsel".
- Using "v", "V" or CTRL-V command, and 'selectmode' contains "cmd".
- Using "gh", "gH" or "g_CTRL-H" command in Normal mode.
- From Visual mode, press CTRL-G. *v_CTRL-G*
...
*gh*
gh Start Select mode, characterwise. This is like "v",
but starts Select mode instead of Visual mode.
Mnemonic: "get highlighted".
...