emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Carsten Dominik <carsten.dominik@gmail.com>
To: Uwe Brauer <oub@mat.ucm.es>
Cc: emacs-orgmode@gnu.org
Subject: Re: how to bind keys in orgtbl-mode
Date: Fri, 9 Dec 2011 23:24:37 +0100	[thread overview]
Message-ID: <BBE405A5-B0E3-4B7F-9293-D260537ED2D9@gmail.com> (raw)
In-Reply-To: <878vmltojo.fsf@mat.ucm.es>


On 9.12.2011, at 22:36, Uwe Brauer wrote:

> 
> 
> Hello 
> 
> 
> how can I bind keys in Orgtbl minor mode?
> 
> I would like to have the same binding as in org-mode
> 
>  (local-set-key [(control c) (control w)] 'org-table-wrap-region)

We could just add this to the standard orgtbl bindings - don't know why
this is not the case.  OK, I just did that.

>  (local-set-key [(control c) (control h)] 'org-table-insert-hline)

This one on the other hand violates Emacs conventions, so
we cannot do this by default.

> But I don't find a orgtbl-mode-hook.

Like Nick says, you need to set keys in orgtbl-mode-map.
You can use orgtbl-mode-hook to do this.  define-minor-mode
makes sure that a hook is run.

However, if you want to use them in a major mode that also
needs these keys (outside of tables), then you need to do
extra work to create magic commands that work inside
and outside tables, calling different commands in each
location.  This should do it:

(add-hook
 'orgtbl-mode-hook
 (lambda ()
   (org-defkey orgtbl-mode-map "\C-c\C-w"
	       (orgtbl-make-binding 'org-table-wrap-region 1000 "\C-c\C-w"))
   (org-defkey orgtbl-mode-map "\C-c\C-h"
	       (orgtbl-make-binding 'org-table-wrap-region 1001 "\C-c\C-h"))))

The 1000 and 1001 must be unique numbers not already used for this purpose
by orgtbl-mode, anything above 200 should be safe.


HTH

- Carsten

  parent reply	other threads:[~2011-12-09 22:24 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-09 21:36 how to bind keys in orgtbl-mode Uwe Brauer
2011-12-09 21:44 ` Nick Dokos
2011-12-09 22:24 ` Carsten Dominik [this message]
2011-12-09 22:49   ` Uwe Brauer
2011-12-15  7:50   ` Sebastien Vauban
2011-12-15  8:11     ` Carsten Dominik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BBE405A5-B0E3-4B7F-9293-D260537ED2D9@gmail.com \
    --to=carsten.dominik@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=oub@mat.ucm.es \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).