Function: org-table--shrunk-field
org-table--shrunk-field is a byte-compiled function defined in
org-table.el.gz.
Signature
(org-table--shrunk-field)
Documentation
Non-nil if current field is narrowed.
When non-nil, return the overlay narrowing the field.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;; Columns Shrinking
(defun org-table--shrunk-field ()
"Non-nil if current field is narrowed.
When non-nil, return the overlay narrowing the field."
(cl-some (lambda (o)
(and (eq 'table-column-hide (overlay-get o 'org-overlay-type))
o))
(overlays-at (save-excursion
(skip-chars-forward (if (org-at-table-hline-p) "^+|"
"^|")
(line-end-position))
(1- (point))))))