table-global-menu-map

table-global-menu-map is a variable defined in `table.el'.
Its value is shown below.
  • This variable may be risky if used as a file-local variable.

Documentation:
Table global menu

Value:

(keymap "Table" (Insert menu-item "Insert" (keymap "Insert" (a\ Table\.\.\. menu-item "a Table..." table-insert :enable (and (not buffer-read-only) (not (table--probe-cell))) :help "Insert a text based table at point") (Row menu-item "Row" table-insert-row :enable (table--row-column-insertion-point-p) :help "Insert row(s) of cells in table") (Column menu-item "Column" table-insert-column :enable (table--row-column-insertion-point-p 'column) :help "Insert column(s) of cells in table"))) (nil menu-item "----") (Recognize menu-item "Recognize" (keymap "Recognize" (in\ Buffer menu-item "in Buffer" table-recognize :help "Recognize all tables in the current buffer") (in\ Region menu-item "in Region" table-recognize-region :enable (and mark-active (not (eq (mark t) (point)))) :help "Recognize all tables in the current region") (a\ Table menu-item "a Table" table-recognize-table :enable (table--probe-cell) :help "Recognize a table at point") (a\ Cell menu-item "a Cell" table-recognize-cell :enable (let ((cell (table--probe-cell))) (and cell (null (table--at-cell-p (car cell))))) :help "Recognize a cell at point"))) (Unrecognize menu-item "Unrecognize" (keymap "Unrecognize" (in\ Buffer menu-item "in Buffer" table-unrecognize :help "Unrecognize all tables in the current buffer") (in\ Region menu-item "in Region" table-unrecognize-region :enable (and mark-active (not (eq (mark t) (point)))) :help "Unrecognize all tables in the current region") (a\ Table menu-item "a Table" table-unrecognize-table :enable (table--probe-cell) :help "Unrecognize the current table") (a\ Cell menu-item "a Cell" table-unrecognize-cell :enable (let ((cell (table--probe-cell))) (and cell (table--at-cell-p (car cell)))) :help "Unrecognize the current cell"))) (nil-4 menu-item "----") (Capture\ Region menu-item "Capture Region" table-capture :enable (and (not buffer-read-only) mark-active (not (eq (mark t) (point))) (not (table--probe-cell))) :help "Capture text in the current region as a table") (Release menu-item "Release" table-release :enable (table--editable-cell-p) :help "Release the current table as plain text"))