Re: [O] How to re-bind C-,?

2014-09-27 Thread Teika Kazura
How about this? (define-key org-mode-map [(control ?,)] 'your-lambda-expression) Teika (Teika kazura)

Re: [O] How to re-bind C-,?

2014-09-27 Thread Grant Rettke
That works as expected. Thank very much Jorge and Teika. Bit of a mystery why that local-set-key didn't work; and I'm OK with it remaining so :). On Sat, Sep 27, 2014 at 7:30 AM, Teika Kazura te...@gmx.com wrote: How about this? (define-key org-mode-map [(control ?,)] 'your-lambda-expression)

[O] How to re-bind C-,?

2014-09-26 Thread Grant Rettke
Good afternoon, ╭ │ (print emacs-version) │ (print org-version) ╰ ╭ │ 24.3.1 │ │ 8.2.7c ╰ My goal was to set a new keybinding for two keys like this: ╭ │ (local-set-key (kbd C-,) (lambda () (interactive) (insert \\larr ))) │ (local-set-key (kbd C-.) (lambda ()

Re: [O] How to re-bind C-,?

2014-09-26 Thread Jorge A. Alfaro-Murillo
Grant Rettke writes: My goal was to set a new keybinding for two keys like this: ╭ │ (local-set-key (kbd C-,) (lambda () (interactive) (insert \\larr ))) │ (local-set-key (kbd C-.) (lambda () (interactive) (insert \\rarr ))) ╰ The second works fine. The first does not; it stays

Re: [O] How to re-bind C-,?

2014-09-26 Thread Grant Rettke
On Fri, Sep 26, 2014 at 12:17 PM, Jorge A. Alfaro-Murillo jorge.alfaro-muri...@yale.edu wrote: Grant Rettke writes: For me `org-cycle-agenda-files' is bound to C-', not C-, maybe you have something that sets C-' to C-, globally? Definitely, here in my .emacs.el: ╭ │ (global-set-key (kbd

Re: [O] How to re-bind C-,?

2014-09-26 Thread Jorge A. Alfaro-Murillo
Grant Rettke writes: On Fri, Sep 26, 2014 at 12:17 PM, Jorge A. Alfaro-Murillo jorge.alfaro-muri...@yale.edu wrote: For me `org-cycle-agenda-files' is bound to C-', not C-, maybe you have something that sets C-' to C-, globally? Definitely, here in my .emacs.el: ╭ │ (global-set-key

Re: [O] How to re-bind C-,?

2014-09-26 Thread Jorge A. Alfaro-Murillo
Jorge A. Alfaro-Murillo writes: Grant Rettke writes: On Fri, Sep 26, 2014 at 12:17 PM, Jorge A. Alfaro-Murillo jorge.alfaro-muri...@yale.edu wrote: For me `org-cycle-agenda-files' is bound to C-', not C-, maybe you have something that sets C-' to C-, globally? Definitely, here in my

Re: [O] How to re-bind C-,?

2014-09-26 Thread Grant Rettke
Yes it is the only time it is globally bound. On Fri, Sep 26, 2014 at 4:03 PM, Jorge A. Alfaro-Murillo jorge.alfaro-muri...@yale.edu wrote: Jorge A. Alfaro-Murillo writes: Grant Rettke writes: On Fri, Sep 26, 2014 at 12:17 PM, Jorge A. Alfaro-Murillo jorge.alfaro-muri...@yale.edu wrote: