split windows side by side in emacs?

how can i split windows side by side in emacs?
not like this:
buffer
---------
buffer

but:
b | b
u | u
f  | f
f  | f
e | e
r  | r


and c-x c-f is find file for me in windows. how do i create anew one?

Går det långsamt? Skaffa dig en snabbare bredbandsuppkoppling.
Sök och jämför priser hos Kelkoo.
<div>
<table cellspacing="0" cellpadding="0" border="0"><tr><td valign="top"><div>how can i split windows side by side in emacs?<br>
not like this:<br>
buffer<br>
---------<br>
buffer<br><br>
but:<br>
b | b<br>
u | u<br>
f&nbsp; | f<br>
f&nbsp; | f<br>
e | e<br>
r&nbsp; | r<br><br><br>and c-x c-f is find file for me in windows. how do i create anew one?<br>
</div></td></tr></table>
<br>
G&aring;r det l&aring;ngsamt? Skaffa dig en snabbare bredbandsuppkoppling.<br><a href="http://www.kelkoo.se/c-100015813-bredband.html?partnerId=96914325">S&ouml;k och j&auml;mf&ouml;r priser hos Kelkoo.</a>
</div>
Raimo Niskanen | 1 Jul 16:45

Re: split windows side by side in emacs?

On Tue, Jul 01, 2008 at 01:21:16PM +0000, not norwegian swede wrote:
> how can i split windows side by side in emacs?

Try C-h b
then change buffer an search for "window" with
C-s w i n d o w C-s C-s ...

Or even C-h ? then b

And the answer is: C-x 3

Try these also:
C-x 2
C-x 1
C-x 3
C-x 0

> 
> not like this:
> 
> buffer
> 
> ---------
> 
> buffer
> 
> 
> 
> but:
> 
> b | b
> 
> u | u
> 
> f  | f
> 
> f  | f
> 
> e | e
> 
> r  | r
> 
> 
> 
> and c-x c-f is find file for me in windows. how do i create anew one?
> 
> 
> 
> 
>       __________________________________________________________
> Ta semester! - sök efter resor hos Kelkoo.
> Jämför pris på flygbiljetter och hotellrum här:
> http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052
> _______________________________________________
> erlang-questions mailing list
> erlang-questions <at> erlang.org
> http://www.erlang.org/mailman/listinfo/erlang-questions

--

-- 

/ Raimo Niskanen, Erlang/OTP, Ericsson AB
Tuncer Ayaz | 1 Jul 18:47

Re: split windows side by side in emacs?

On Tue, Jul 1, 2008 at 4:45 PM, Raimo Niskanen
<raimo+erlang-questions <at> erix.ericsson.se> wrote:
> On Tue, Jul 01, 2008 at 01:21:16PM +0000, not norwegian swede wrote:
>> how can i split windows side by side in emacs?
>
> Try C-h b
> then change buffer an search for "window" with
> C-s w i n d o w C-s C-s ...
>
> Or even C-h ? then b
>
> And the answer is: C-x 3
>
> Try these also:
> C-x 2
> C-x 1
> C-x 3
> C-x 0

I don't want erlang-questions to be an Emacs Help
channel but as many voices are already active in this
discussion I might chime in with mentioning that if
you use split buffers/windows it's cool to set
some bindings for easily navigating up/down/left/right:
(windmove-default-keybindings 'meta)
(global-set-key [M-left] 'windmove-left)          ; move to left windnow
(global-set-key [M-right] 'windmove-right)        ; move to right window
(global-set-key [M-up] 'windmove-up)              ; move to upper window
(global-set-key [M-down] 'windmove-down)          ; move to downer window

the bound keys might of course not suit everyone's settings
depending on what else one has configured.

>>
>> not like this:
>>
>> buffer
>>
>> ---------
>>
>> buffer
>>
>>
>>
>> but:
>>
>> b | b
>>
>> u | u
>>
>> f  | f
>>
>> f  | f
>>
>> e | e
>>
>> r  | r
>>
>>
>>
>> and c-x c-f is find file for me in windows. how do i create anew one?
>>
>>
>>
>>
>>       __________________________________________________________
>> Ta semester! - sök efter resor hos Kelkoo.
>> Jämför pris på flygbiljetter och hotellrum här:
>> http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052
>> _______________________________________________
>> erlang-questions mailing list
>> erlang-questions <at> erlang.org
>> http://www.erlang.org/mailman/listinfo/erlang-questions
>
> --
>
> / Raimo Niskanen, Erlang/OTP, Ericsson AB
> _______________________________________________
> erlang-questions mailing list
> erlang-questions <at> erlang.org
> http://www.erlang.org/mailman/listinfo/erlang-questions
>
Patrick Logan | 1 Jul 17:23

Re: split windows side by side in emacs?

"how can i split windows side by side in emacs?"

c-x 3     (obviously!  :-)

Actually the way to find this is to run the "apropos" command...

c-h a

And then type in "split" or something and it will tell you the command
"split-window-horizontally" is bound to the c-x 3 key combination.

"and c-x c-f is find file for me in windows. how do i create anew one?"

Not sure what you want, but

c-x 4 f

is bound to find-file-other-window.
Thomas Lindgren | 1 Jul 19:33

Re: split windows side by side in emacs?

M-x apropos
"split window"

M-x split-window-horizontally

This is getting a bit beyond the scope of this mailing list, isn't it? Perhaps there is a more appropriate forum.

Best,
Thomas

--- On Tue, 7/1/08, not norwegian swede <notnorwegian <at> yahoo.se> wrote:

> From: not norwegian swede <notnorwegian <at> yahoo.se>
> Subject: [erlang-questions] split windows side by side in emacs?
> To: erlang-questions <at> erlang.org
> Date: Tuesday, July 1, 2008, 3:21 PM
> how can i split windows side by side in emacs?
> 
> not like this:
> 
> buffer
> 
> ---------
> 
> buffer
> 
> 
> 
> but:
> 
> b | b
> 
> u | u
> 
> f  | f
> 
> f  | f
> 
> e | e
> 
> r  | r
> 
> 
> 
> and c-x c-f is find file for me in windows. how do i create
> anew one?
> 
> 
> 
> 
>      
> __________________________________________________________
> Ta semester! - sök efter resor hos Kelkoo.
> Jämför pris på flygbiljetter och hotellrum här:
> http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052_______________________________________________
> erlang-questions mailing list
> erlang-questions <at> erlang.org
> http://www.erlang.org/mailman/listinfo/erlang-questions

      
fess | 1 Jul 19:46

Re: split windows side by side in emacs?


On Jul 1, 2008, at 10:33 AM, Thomas Lindgren wrote:

> This is getting a bit beyond the scope of this mailing list, isn't  
> it? Perhaps there is a more appropriate forum.

oh,  I was thinking,  it's a good thing that emacs is the official  
IDE of erlang, otherwise someone might consider
this thread off topic.  *grin*

:w
:q

--fess

Peter Donner | 1 Jul 16:46

Re: split windows side by side in emacs?

not norwegian swede schrieb:
> how can i split windows side by side in emacs?
>
>   
C-x 3
C-h b gives help...


Gmane