Selecione * Ajuda * buffer da janela após Ch f

14

Eu faço muito "Ch f" para funções do emacs lisp. Prefiro ter a janela exibindo o buffer de Ajuda selecionado (logo após Ch f) e pressione "q" quando terminar para fechar a janela. Existe uma maneira de conseguir isso?

Matthias
fonte
Ligeiramente relacionado: você pode usar o github.com/abo-abo/ace-link para navegar no *Help*buffer quando estiver lá.
abo-abo

Respostas:

19

Experimentar

(setq help-window-select t)

ou personalize essa variável. A documentação completa declara:

Documentation:
Non-nil means select help window for viewing.
Choices are:
 never (nil) Select help window only if there is no other window
             on its frame.
 other       Select help window unless the selected window is the
             only other window on the help window's frame.
 always (t)  Always select the help window.

This option has effect if and only if the help window was created
by `with-help-window'

You can customize this variable.

This variable was introduced, or its default value was changed, in
version 23.1 of Emacs.
Constantine
fonte
1
É bom saber que este é um recurso embutido "agora"! Durante anos, usei um conselho para as várias funções de ajuda para fazer isso.
paprika