help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Key binding


From: Kester Clegg
Subject: Re: Key binding
Date: 26 Nov 2002 16:32:04 +0000
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1

Florian Lindner <Florian.Lindner@xgm.de> writes:

> > C-x 2
> 
> split-window-vertically just splits the window and uses both parts for the 
> current window.
> I want that the new windows takes about the half of the current window, like 
> the compile function.


Do you mean you want the second window to be smaller than C-x 2 gives
you?

Define your own function and call it:

(defun littleSplit ()
  "Split in two unequal windows"
  (interactive)
  (split-window nil 52 nil))

-- 
************************************************************************
Kester Clegg                            Dept. of Computer Science,
Research Assistant (UTC)                University of York, 
Tel (01904) 43 27 49                    email: kester at cs.york.ac.uk
************************************************************************


reply via email to

[Prev in Thread] Current Thread [Next in Thread]