You are not logged in.

#1 2010-05-30 09:50:18

vajorie
Member
Registered: 2009-03-12
Posts: 66

[SOLVED] emacs orgmode weird behaviors

After a long time, I updated arch and got 2GB worth of updates... Afterwards, emacs' orgmode is behaving differently. When I prompt to open the weekly agenda (C-c c), it asks me what to open in a window in the side of the window (it used to ask it at the bottom). And when I open the agenda (C-c c a), it does not allow me to browse other weeks with arrow buttons.

I was wondering if anyone had an idea what happened... Thanks:)

Last edited by vajorie (2010-05-30 20:21:19)

Offline

#2 2010-05-30 11:46:43

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: [SOLVED] emacs orgmode weird behaviors

You probably updated emacs as well.
Maybe that's how new orgmode operates?
Do you have a widescreen? I believe emacs shows questions splitted on the side if you have a sufficiently wide screen, maybe that is something new too?


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#3 2010-05-30 12:17:47

chpln
Member
From: Australia
Registered: 2009-09-17
Posts: 361

Re: [SOLVED] emacs orgmode weird behaviors

Both of these are changes made to more recent versions of Emacs and Org-Mode.

You can rebind the left / right directional keys in the agenda with:

(add-hook 'org-agenda-mode-hook
      (lambda ()
        (org-defkey org-agenda-mode-map [(left)] 'org-agenda-earlier)
        (org-defkey org-agenda-mode-map [(right)] 'org-agenda-later)))

The reason for the window being created in a different position is due to changes to Emacs' splitting behaviour.  A quick solution to this would be to increase the value of `split-width-threshold'.

Offline

#4 2010-05-30 20:21:03

vajorie
Member
Registered: 2009-03-12
Posts: 66

Re: [SOLVED] emacs orgmode weird behaviors

chpln wrote:

Both of these are changes made to more recent versions of Emacs and Org-Mode.

You can rebind the left / right directional keys in the agenda with:

(add-hook 'org-agenda-mode-hook
      (lambda ()
        (org-defkey org-agenda-mode-map [(left)] 'org-agenda-earlier)
        (org-defkey org-agenda-mode-map [(right)] 'org-agenda-later)))

The reason for the window being created in a different position is due to changes to Emacs' splitting behaviour.  A quick solution to this would be to increase the value of `split-width-threshold'.

thanks all so much. the above solved both of the problems smile

Offline

Board footer

Powered by FluxBB