[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Feeling lost without tabs
From: |
Javier |
Subject: |
Re: Feeling lost without tabs |
Date: |
Wed, 23 Jul 2014 00:57:41 +0000 (UTC) |
User-agent: |
tin/2.2.0-20131224 ("Lochindaal") (UNIX) (Linux/3.14.2-1-ARCH (x86_64)) |
> I don't like your taste in keys (the function and arrow
> keys) because of the reach thing I've talked about many
> times, but cred for not only writing Elisp but also
> sharing it for everyone to see/use!
[Shift+left/right arrows] is just analogous with the way you move
between virtual ttys in Linux: [Alt+Left/right arrow]. In the window
manager I use [WindowsKey+arrows] to move between virtual desktops.
C-Tab and C-S-Tab are another obvious choice; they would move
between emacs frames in the same way as you move between firefox tabs.
;; navigate frames
(defun other-frame-dec () "" (interactive) (other-frame '+1))
(defun other-frame-inc () "" (interactive) (other-frame '-1))
(global-set-key [C-iso-lefttab] 'other-frame-inc)
(global-set-key [C-S-iso-lefttab] 'other-frame-dec)
> still (with `pop-up-frames') destroys my two-pane
> layout. I guess I need something like (setq
> keep-window-layout t)?
(setq pop-up-frames t) is for never having the frame split in two
windows. Having two windows in the same frame is the default emacs
behaviour and may be ok for very big screens, but for a small screen
with a big font is not good.
In any case, all these things are a matter of personal taste, and
fortunately emacs gives a lot of freedom to the user to configure
them. No other program out there gets even close to give the freedom
emacs gives.
Re: Feeling lost without tabs, Tak Kunihiro, 2014/07/20
Message not available
- Re: Feeling lost without tabs, Javier, 2014/07/22
- Re: Feeling lost without tabs, Ken Goldman, 2014/07/22
- RE: Feeling lost without tabs, Drew Adams, 2014/07/22
- Re: Feeling lost without tabs, Emanuel Berg, 2014/07/22
- Re: Feeling lost without tabs,
Javier <=
- Re: Feeling lost without tabs, Emanuel Berg, 2014/07/22
Message not availableRe: Feeling lost without tabs, Emanuel Berg, 2014/07/22
Re: Feeling lost without tabs, Filipp Gunbin, 2014/07/20
Re: Feeling lost without tabs, Kevin Le Gouguec, 2014/07/20
RE: Feeling lost without tabs, Drew Adams, 2014/07/20
Re: Feeling lost without tabs, Robert Thorpe, 2014/07/20
Re: Feeling lost without tabs, Dan Espen, 2014/07/20