Function: org-table-fedit-toggle-ref-type
org-table-fedit-toggle-ref-type is an interactive and byte-compiled
function defined in org-table.el.gz.
Signature
(org-table-fedit-toggle-ref-type)
Documentation
Convert all references in the buffer from B3 to @3$2 and back.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-fedit-toggle-ref-type ()
"Convert all references in the buffer from B3 to @3$2 and back."
(interactive)
(setq-local org-table-buffer-is-an (not org-table-buffer-is-an))
(org-table-fedit-convert-buffer
(if org-table-buffer-is-an
'org-table-convert-refs-to-an 'org-table-convert-refs-to-rc))
(message "Reference type switched to %s"
(if org-table-buffer-is-an "A1 etc" "@row$column")))