Function: table-justify-column
table-justify-column is an autoloaded, interactive and byte-compiled
function defined in table.el.gz.
Signature
(table-justify-column JUSTIFY)
Documentation
Justify cells of a column.
JUSTIFY is a symbol left, center or right for horizontal,
or top, middle, bottom or none for vertical.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
;;;###autoload
(defun table-justify-column (justify)
"Justify cells of a column.
JUSTIFY is a symbol `left', `center' or `right' for horizontal,
or `top', `middle', `bottom' or `none' for vertical."
(interactive
(list (table--query-justification)))
(let((cell-list (table--vertical-cell-list nil nil 'left)))
(table--finish-delayed-tasks)
(save-excursion
(while cell-list
(let ((cell (car cell-list)))
(setq cell-list (cdr cell-list))
(goto-char (car cell))
(table-recognize-cell 'force)
(table--justify-cell-contents justify))))))