Send table in Org-mode as well, just like radio tables do it in other modes
* lisp/org.el (org-ctrl-c-ctrl-c): Consider sending a radio table also in Org
This commit is contained in:
parent
dd7b13bde8
commit
af71c1b049
|
@ -17320,7 +17320,8 @@ This command does many different things, depending on context:
|
||||||
(if arg
|
(if arg
|
||||||
(call-interactively 'org-table-recalculate)
|
(call-interactively 'org-table-recalculate)
|
||||||
(org-table-maybe-recalculate-line))
|
(org-table-maybe-recalculate-line))
|
||||||
(call-interactively 'org-table-align))
|
(call-interactively 'org-table-align)
|
||||||
|
(orgtbl-send-table 'maybe))
|
||||||
((or (org-footnote-at-reference-p)
|
((or (org-footnote-at-reference-p)
|
||||||
(org-footnote-at-definition-p))
|
(org-footnote-at-definition-p))
|
||||||
(call-interactively 'org-footnote-action))
|
(call-interactively 'org-footnote-action))
|
||||||
|
|
Loading…
Reference in New Issue