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?
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.
*Help*
buffer quando estiver lá.Respostas:
Experimentar
ou personalize essa variável. A documentação completa declara:
fonte