From: Jorgen S. <fo...@fo...> - 2004-09-24 14:03:10
|
Pascal J.Bourguignon <pj...@in...> writes: > Hello, > > I'm a new user of erc, and I have a couple of questions: > > - how to erase (/clean) a channel buffer? erase-buffer complains for > read-only text. For now, the only solution I have is /leave and > /join #channel. (And I mean really removing all the buffer contents, > not jumping down!) (defun erc-cmd-CLEAN () "Clean the current erc server buffer." (save-excursion (let ((inhibit-read-only t)) (delete-region (point-min) (erc-bol))))) > - the answers to /msg commands given in a #channel buffer go to the > server buffer. How can one get them in the #channel buffer where > the /msg command was given? You can customize erc-auto-query to make it open a new window when someone sends you a message. ERC does not do the bookkeeping to determine if and where a message was sent to someone so it can find out where it should display a reply. But actually, the reply should be displayed in the current window (or last active erc window). Does it really show up only in the server buffer? Greetings, -- Jorgen -- ((email . "fo...@fo...") (www . "http://www.forcix.cx/") (gpg . "1024D/028AF63C") (irc . "nick forcer on IRCnet")) |