emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] Bug with cua-mode & org-support-shift-select


From: Ivan Vanyushkin
Subject: [Orgmode] Bug with cua-mode & org-support-shift-select
Date: Mon, 01 Feb 2010 00:36:31 +0200
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1

Hello.

I want to use C-x/C-c/C-v and Shift-arrows selection with org-mode.

GNU Emacs 23.1.50.1, org-mode 6.34, .emacs:
(cua-mode 1)
(setq org-support-shift-select t)

If this two options are on, then Shift key selection with arrow keys doesn't work: no selection, just cursor movements. According to http://orgmode.org/manual/Conflicts.html I think that org-mode should support CUA. If not, what can you suggest for correct support of C-x/C-c/C-v + org-support-shift-select?

As far as I can say, the reason of problem is there:

In org.el:
(defun org-call-for-shift-select (cmd)
  (let ((this-command-keys-shift-translated t))
    (call-interactively cmd)))

Called like this: (org-call-for-shift-select 'forward-char)

In cua-base.el Shift key is detected like this:
    (memq 'shift (event-modifiers
              (aref (this-single-command-raw-keys) 0)))
binded as pre-command-hook.

So, I think, Shift key is just not detected by CUA, and need a way to set it's flag. Sorry, I don't know emacs lisp.

Thank you for your suggestions.

--
Ivan Vanyushkin - Vanav.
http://vanav.com.ua
mailto:address@hidden
Jabber/GTalk: address@hidden
ICQ: 190644448
Yahoo: Vanav_I
MSN: address@hidden





reply via email to

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