emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Adrian Bradd <adrian.bradd@gmail.com>
To: Marco Wahl <marcowahlsoft@gmail.com>
Cc: emacs-orgmode@gnu.org, Kaushal Modi <kaushal.modi@gmail.com>
Subject: Re: Old 'C-c tab' binding shadowed
Date: Sat, 9 Sep 2017 13:02:31 -0400	[thread overview]
Message-ID: <CAMYmr8wP0BV++O-xHS-G+HL=jvdHC8MShfQ5F9Bng3QXO7WyYw@mail.gmail.com> (raw)
In-Reply-To: <84377yupkw.fsf@tm6592>

[-- Attachment #1: Type: text/plain, Size: 2810 bytes --]

I also use this keybinding for opening subtrees to certain depths. My
reasoning is identical to Marco's, it provides a great overview with very
little noise.

Would be nice to have these actions context dependent in org so we get the
best of both worlds. Failing that, Kaushal's setup looks like a good
solution.

Cheers,

Adrian

On 7 September 2017 at 18:11, Marco Wahl <marcowahlsoft@gmail.com> wrote:

> >> I think the bindings could coexist peacefully since
> >>
> > `org-table-toggle-column-width' makes sense only for the cursor located
> >> in a table and `outline-show-children' makes most sense (AFAICS) when
> >> called on a headline.
> >>
> >> Does this sound reasonable?
> >>
> >> Does anyone see clearly how to implement this?  (I don't.)
> >>
> >
> > I  always wondered the same about other org-table-* bindings in org.el.
> >
> > This works:
> >
> > diff --git a/lisp/org.el b/lisp/org.el
> > index a03d8c5a429..cba9b20482f 100644
> > --- a/lisp/org.el
> > +++ b/lisp/org.el
> > @@ -19632,7 +19632,12 @@ COMMANDS is a list of alternating OLDDEF NEWDEF
> > command names."
> >  (org-defkey org-mode-map "\C-j"     'org-return-indent)
> >  (org-defkey org-mode-map "\C-c?"    'org-table-field-info)
> >  (org-defkey org-mode-map "\C-c "    'org-table-blank-field)
> > -(org-defkey org-mode-map (kbd "C-c TAB") #'org-table-toggle-column-
> width)
> > +(org-defkey org-mode-map (kbd "C-c TAB")
> > +            '(menu-item "toggle-column-width-when-in-table" nil
> > +                        :filter (lambda (&optional _)
> > +                                  (if (org-at-table-p)
> > +                                      #'org-table-toggle-column-width
> > +    #'outline-show-children))))
> >  (org-defkey org-mode-map "\C-c+"    'org-table-sum)
> >  (org-defkey org-mode-map "\C-c="    'org-table-eval-formula)
> >  (org-defkey org-mode-map "\C-c'"    'org-edit-special)
> >
> > I actually do this for org-table-* bindings in my config:
> >
> >     ;; Bind the "org-table-*" command ONLY when the point is in an Org
> > table.
> >     ;; http://emacs.stackexchange.com/a/22457/115
> >     (bind-keys
> >      :map org-mode-map
> >      :filter (org-at-table-p)
> >      ("C-c ?" . org-table-field-info)
> >      ("C-c SPC" . org-table-blank-field)
> >      ("C-c +" . org-table-sum)
> >      ("C-c =" . org-table-eval-formula)
> >      ("C-c `" . org-table-edit-field)
> >      ("C-#" . org-table-rotate-recalc-marks)
> >      ("C-c }" . org-table-toggle-coordinate-overlays)
> >      ("C-c {" . org-table-toggle-formula-debugger))
> >
> > Inspiration:
> > http://endlessparentheses.com/define-context-aware-keys-in-emacs.html
>
> Thanks!
>
> Good to know a path to a personal configuration for the case no one else
> is interested in the old C-c TAB behavior.
>
>
> Ciao,
>      Marco
>
>
>

[-- Attachment #2: Type: text/html, Size: 4570 bytes --]

  reply	other threads:[~2017-09-09 17:02 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-07 19:30 Old 'C-c tab' binding shadowed Marco Wahl
2017-09-07 19:41 ` Nicolas Goaziou
2017-09-07 21:28   ` Marco Wahl
2017-09-07 19:53 ` Kaushal Modi
2017-09-07 22:11   ` Marco Wahl
2017-09-09 17:02     ` Adrian Bradd [this message]
2017-09-18 19:29       ` Nicolas Goaziou

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='CAMYmr8wP0BV++O-xHS-G+HL=jvdHC8MShfQ5F9Bng3QXO7WyYw@mail.gmail.com' \
    --to=adrian.bradd@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=kaushal.modi@gmail.com \
    --cc=marcowahlsoft@gmail.com \
    /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).