Saptarshi Guha <saptarshi.guha <at> gmail.com> writes:

> 
> Hello,
> I know shift and arrow keys are used by org-mode. But is there a way
> to remap them to selecting the line(as in Aquamacs text mode)
>  (e.g shift+down highlights the current line, shift+up highlights the
> previous line etc).
> 

I rebound the keys in my org-mode hook:



(add-hook 'org-mode-hook 'my-org-mode-stuff)

(defun my-org-mode-stuff ()
   ...
  (local-set-key (kbd "C-S-<right>") 'forward-word-mark)
  (local-set-key (kbd "C-S-<left>") 'backward-word-mark)
  (local-set-key (kbd "S-<right>") 'forward-char-mark)
  (local-set-key (kbd "S-<left>") 'backward-char-mark)
  (local-set-key (kbd "S-<up>") 'previous-line-mark)
  (local-set-key (kbd "S-<down>") 'next-line-mark)
  ...



_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to