Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After I open something with emacsclient, when I kill that buffer (C-x k) I get a confirmation dialog:

Buffer `blah' still has clients; kill it? (yes or no)

But when I kill buffers opened directly from Emacs I don't. Is there a way not to get them when emacsclient opened them?

share|improve this question

2 Answers

up vote 13 down vote accepted

Try

(remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)*

(More information on Using Emacsclient blog entry. Worked with me.

share|improve this answer
I don't know if it's appropriate for me to upvote this answer, but to the best of my knowledge it's correct, so :-) – ShreevatsaR Nov 6 '08 at 16:31
1  
This won't work if emacs was started using emacsclient's "ALTERNATE_EDITOR" Behavior... in that case you can do (defun server-remove-kill-buffer-hook () (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)) (add-hook 'server-visit-hook 'server-remove-kill-buffer-hook) – Woodrow Douglass Jan 30 at 15:00

The other option is to use the -n option with emacsclient so that it doesn't wait for the file to be edited before exiting.

For example:

emacsclient -n myfile.txt
share|improve this answer
Thanks! It has the benefit (for me) over the other solution not to close the frame when buffer is killed, in the case emacsclient created a new frame with the '-c' option. – rafak Feb 23 '11 at 13:19
Note: -n (--no-wait) is not what you want if you have a program waiting for the file to be finished editing. – Sam Hasler Dec 4 '12 at 11:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.