From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Damien Wyart Newsgroups: gmane.emacs.help Subject: Re: Is a method like this already in emacs? Date: Tue, 05 Nov 2013 11:23:59 +0100 Organization: Serveur de News Free Message-ID: <5278c73f$0$2059$426a74cc@news.free.fr> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1383647113 8425 80.91.229.3 (5 Nov 2013 10:25:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Nov 2013 10:25:13 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 05 11:25:19 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Vddoy-0004J4-VS for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Nov 2013 11:25:17 +0100 Original-Received: from localhost ([::1]:54378 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vddoy-0007jM-G6 for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Nov 2013 05:25:16 -0500 X-Received: by 10.180.106.161 with SMTP id gv1mr8291738wib.4.1383647053370; Tue, 05 Nov 2013 02:24:13 -0800 (PST) Original-Path: usenet.stanford.edu!k1no12962676wiy.0!news-out.google.com!ft6ni5576wib.1!nntp.google.com!proxad.net!feeder1-2.proxad.net!cleanfeed4-a.proxad.net!nnrp1-1.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3.50 Original-Lines: 27 Original-NNTP-Posting-Date: 05 Nov 2013 11:23:59 CET Original-NNTP-Posting-Host: 213.41.244.197 Original-X-Trace: 1383647039 news-1.free.fr 2059 213.41.244.197:48814 Original-X-Complaints-To: abuse@proxad.net Original-Xref: usenet.stanford.edu gnu.emacs.help:202070 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:94341 Archived-At: * Matthias Pfeifer in gnu.emacs.help: > i recently added this defun to my init.el > (defun detach-window () > "Close current window and re-open it in new frame." > (interactive) > (let ((currentBuffer (window-buffer))) > (progn > (delete-window) > (select-frame (make-frame)) > (set-window-buffer (selected-window) currentBuffer)))) > and found it to be useful in several situations. now i wonder if > a function that does the same is already available somewhere in emacs? No, but there has been a quite long related discussion recently on emacs-devel: http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00039.html > Also i am curious about emacs lisp and could not successfully google > for a related mailing-list - now i wonder if somebody knows about one > and shares the knowledge. This list is fine, and for more advanced topics, emacs-devel can be used. -- DW