Variable: org-tbl-menu
org-tbl-menu is a variable defined in org.el.gz.
Value
Large value
<Align> <org-at-table-p> nil
<Blank Field> <org-at-table-p> nil
<Calculate> <keymap> <Edit Formulas> <org-at-table-p> nil
<Calculate> <keymap> <Iterate all> <org-at-table-p> nil
<Calculate> <keymap> <Recalculate all> <org-at-table-p> nil
<Calculate> <keymap> <Recalculate line> <org-at-table-p> nil
<Calculate> <keymap> <Set Field Formula> <org-at-table-p> nil
<Calculate> <keymap> <Sum Column/Rectangle> <or> <org-region-active-p> nil
<Calculate> <keymap> <Toggle Recalculate Mark> <org-at-table-p> nil
<Calculate> <keymap> <Which Column?> <org-at-table-p> nil
<Calculate> <keymap> <nil-7> nil
<Calculate> <keymap> <nil-9> nil
<Calculate> <keymap> <nil> nil
<Column> <keymap> <Delete Column> <org-at-table-p> nil
<Column> <keymap> <Insert Column> <org-at-table-p> nil
<Column> <keymap> <Move Column Right> <org-at-table-p> nil
<Column> <keymap> <Shrink Column> <org-at-table-p> nil
<Copy Field from Above> <org-at-table-p> nil
<Edit Field> <org-at-table-p> nil
<Export to File> <org-at-table-p> nil
<Next Field> <org-at-table-p> nil
<Next Row> <org-at-table-p> nil
<Plot> <keymap> <Gnuplot> <org-at-table-p> nil
<Previous Field> <org-at-table-p> nil
<Rectangle> <keymap> <Cut Rectangle> <org-at-table-p> nil
<Rectangle> <keymap> <Fill Rectangle> <org-at-table-p> nil
<Rectangle> <keymap> <Paste Rectangle> <org-at-table-p> nil
<Row> <keymap> <Delete Row> <org-at-table-p> nil
<Row> <keymap> <Insert Hline> <org-at-table-p> nil
<Row> <keymap> <Insert Row> <org-at-table-p> nil
<Row> <keymap> <Move Row Down> <org-at-table-p> nil
<Row> <keymap> <Sort lines in region> <org-at-table-p> nil
<Row> <keymap> <nil> nil
<nil-12> nil
<nil-16> nil
<nil-21> nil
<nil-23> nil
<nil-8> nil
<nil> nil
Documentation
Org Table menu.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(easy-menu-define org-tbl-menu org-mode-map "Org Table menu."
'("Table"
["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
["Next Field" org-cycle (org-at-table-p)]
["Previous Field" org-shifttab (org-at-table-p)]
["Next Row" org-return (org-at-table-p)]
"--"
["Blank Field" org-table-blank-field (org-at-table-p)]
["Edit Field" org-table-edit-field (org-at-table-p)]
["Copy Field from Above" org-table-copy-down (org-at-table-p)]
"--"
("Column"
["Move Column Left" org-metaleft (org-at-table-p)]
["Move Column Right" org-metaright (org-at-table-p)]
["Delete Column" org-shiftmetaleft (org-at-table-p)]
["Insert Column" org-shiftmetaright (org-at-table-p)]
["Shrink Column" org-table-toggle-column-width (org-at-table-p)])
("Row"
["Move Row Up" org-metaup (org-at-table-p)]
["Move Row Down" org-metadown (org-at-table-p)]
["Delete Row" org-shiftmetaup (org-at-table-p)]
["Insert Row" org-shiftmetadown (org-at-table-p)]
["Sort lines in region" org-table-sort-lines (org-at-table-p)]
"--"
["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
("Rectangle"
["Copy Rectangle" org-copy-special (org-at-table-p)]
["Cut Rectangle" org-cut-special (org-at-table-p)]
["Paste Rectangle" org-paste-special (org-at-table-p)]
["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
"--"
("Calculate"
["Set Column Formula" org-table-eval-formula (org-at-table-p)]
["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
["Edit Formulas" org-edit-special (org-at-table-p)]
"--"
["Recalculate line" org-table-recalculate (org-at-table-p)]
["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
"--"
["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
"--"
["Sum Column/Rectangle" org-table-sum
(or (org-at-table-p) (org-region-active-p))]
["Which Column?" org-table-current-column (org-at-table-p)])
["Debug Formulas"
org-table-toggle-formula-debugger
:style toggle :selected (bound-and-true-p org-table-formula-debug)]
["Show Col/Row Numbers"
org-table-toggle-coordinate-overlays
:style toggle
:selected (bound-and-true-p org-table-overlay-coordinates)]
"--"
["Create" org-table-create (not (org-at-table-p))]
["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
["Import from File" org-table-import (not (org-at-table-p))]
["Export to File" org-table-export (org-at-table-p)]
"--"
["Create/Convert from/to table.el" org-table-create-with-table.el t]
"--"
("Plot"
["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))