Como configuro o emacs para sair sem confirmação?

1

Como posso configurar o emacs no OS X para que ele seja encerrado sem abrir um diálogo perguntando se eu quero salvar arquivos?

Por favor, note que eu não estou interessado em religar C-x C-c ou algo assim - o meu comportamento desejado é que quando eu tento reiniciar o sistema, o emacs não impede o desligamento.

    
por Sam 08.03.2018 / 00:06

1 resposta

1

Consulte o manual do Emacs, nó Saindo . Lá você verá isso:

If the value of the variable confirm-kill-emacs is non-nil, C-x C-c assumes that its value is a predicate function, and calls that function. If the result of the function call is non-nil, the session is killed, otherwise Emacs continues to run. One convenient function to use as the value of confirm-kill-emacs is the function yes-or-no-p. The default value of confirm-kill-emacs is nil.

To kill Emacs without being prompted about saving, type M-x kill-emacs.

E você pode vincular kill-emacs a qualquer chave (incluindo C-x C-c ).

    
por 10.03.2018 / 17:56

Tags