From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: Change Emacs window size Date: Thu, 12 Feb 2009 22:36:46 -0800 Message-ID: <001201c98da5$7203ed30$0200a8c0@us.oracle.com> References: <49950793.8060805@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1234507127 9220 80.91.229.12 (13 Feb 2009 06:38:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 13 Feb 2009 06:38:47 +0000 (UTC) To: , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Feb 13 07:40:01 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LXriS-0000Xw-Ud for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Feb 2009 07:40:01 +0100 Original-Received: from localhost ([127.0.0.1]:43226 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXrh9-000796-4o for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Feb 2009 01:38:39 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LXrfU-0006gY-PQ for help-gnu-emacs@gnu.org; Fri, 13 Feb 2009 01:36:56 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LXrfS-0006g3-8r for help-gnu-emacs@gnu.org; Fri, 13 Feb 2009 01:36:55 -0500 Original-Received: from [199.232.76.173] (port=33593 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXrfS-0006fw-2K for help-gnu-emacs@gnu.org; Fri, 13 Feb 2009 01:36:54 -0500 Original-Received: from rcsinet12.oracle.com ([148.87.113.124]:41039 helo=rgminet12.oracle.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LXrfR-0001IT-MG for help-gnu-emacs@gnu.org; Fri, 13 Feb 2009 01:36:53 -0500 Original-Received: from rgminet15.oracle.com (rcsinet15.oracle.com [148.87.113.117]) by rgminet12.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n1D6aMOb006079 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 13 Feb 2009 06:36:23 GMT Original-Received: from acsmt707.oracle.com (acsmt707.oracle.com [141.146.40.85]) by rgminet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n1D6aliT032287; Fri, 13 Feb 2009 06:36:49 GMT Original-Received: from dradamslap1 (/24.5.128.33) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Thu, 12 Feb 2009 22:36:46 -0800 X-Mailer: Microsoft Office Outlook 11 In-Reply-To: <49950793.8060805@gmail.com> Thread-Index: AcmNnaaGOtqWwKC1SmGf1+j0UG91eQABU7PQ X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350 X-Source-IP: acsmt707.oracle.com [141.146.40.85] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A09020A.49951500.023B:SCFSTAT928724,ss=1,fgs=0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 1) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:62100 Archived-At: > From: Alexander Sent: Thursday, February 12, 2009 9:40 PM > I would like to know, how to change emacs' frame (X11 window) size on > the fly. Can anybody help me? Yes. Here are two ways to resize frames incrementally: * Commands `shrink-frame', `shrink-frame-horizontally', `enlarge-frame', and `enlarge-frame-horizontally', in library frame-cmds.el. I bind these to `C-M-' + arrow keys: `C-M-up', `C-M-left', `C-M-down', and `C-M-right', respectively. (I bind the same keys, but without the `C-' prefix, to the frame movement commands in the same library.) http://www.emacswiki.org/emacs/frame-cmds.el * Commands `doremi-frame-height' and `doremi-frame-width', in library doremi-frm.el. After you invoke either of these, you can use the up/down/left/right arrow keys, or the mouse wheel, to adjust the frame size. Code: http://www.emacswiki.org/emacs/doremi-frm.el Doc: http://www.emacswiki.org/emacs/DoReMi For more info about this topic: http://www.emacswiki.org/emacs/FrameSize