From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nikolaj Schumacher Newsgroups: gmane.emacs.help Subject: Re: Copy Paste in no-x11 mode (emacs -nw) Date: Fri, 26 Sep 2008 18:58:45 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1222448360 22352 80.91.229.12 (26 Sep 2008 16:59:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 26 Sep 2008 16:59:20 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "Simeon Nifos" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 26 19:00:17 2008 connect(): Connection refused 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 1KjGft-00041E-JF for geh-help-gnu-emacs@m.gmane.org; Fri, 26 Sep 2008 19:00:13 +0200 Original-Received: from localhost ([127.0.0.1]:33303 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KjGer-0000ZO-BO for geh-help-gnu-emacs@m.gmane.org; Fri, 26 Sep 2008 12:59:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KjGeX-0000Yj-IN for help-gnu-emacs@gnu.org; Fri, 26 Sep 2008 12:58:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KjGeV-0000YL-OF for help-gnu-emacs@gnu.org; Fri, 26 Sep 2008 12:58:48 -0400 Original-Received: from [199.232.76.173] (port=36498 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KjGeV-0000YI-He for help-gnu-emacs@gnu.org; Fri, 26 Sep 2008 12:58:47 -0400 Original-Received: from dd18200.kasserver.com ([85.13.138.168]:51510) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KjGeV-0007Sx-4V for help-gnu-emacs@gnu.org; Fri, 26 Sep 2008 12:58:47 -0400 Original-Received: from thursday (BAH7ac2.bah.pppool.de [77.135.122.194]) by dd18200.kasserver.com (Postfix) with ESMTP id B6AE318842488; Fri, 26 Sep 2008 18:58:50 +0200 (CEST) In-Reply-To: (Simeon Nifos's message of "Fri\, 26 Sep 2008 15\:26\:19 +0300") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2.50 (darwin) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:58120 Archived-At: "Simeon Nifos" wrote: >> Hiding the toolbar and menubar were the first things I did. > > Can you tell us how? in my .emacs: (unless (eq system-type 'darwin) (menu-bar-mode 0)) (tool-bar-mode 0) > Moreover, could you please tell us how to move the border up or down, > left or right separating the 2 windows the original window is splitted > to when one presses C-x 2, or C-x 3? shrink-window, shrink-window-horizontally, enlarge-window and enlarge-window-horizontally But since I can never remember their keys, I actually use the following: (defvar window-resize-mode-map (let ((keymap (make-sparse-keymap))) (define-key keymap "\C-p" 'shrink-window) (define-key keymap "\C-b" 'shrink-window-horizontally) (define-key keymap "\C-n" 'enlarge-window) (define-key keymap "\C-f" 'enlarge-window-horizontally) (define-key keymap "\C-c\C-c" 'window-resize-mode) (define-key keymap "q" 'window-resize-mode) keymap)) (define-minor-mode window-resize-mode "Interactively resize the window using text-movement commands." nil "resize " window-resize-mode-map :global t) After C-x2, you can also drag the mode line with the mouse. regards, Nikolaj Schumacher