Variable: LaTeX-tabular*-skipping-regexp

LaTeX-tabular*-skipping-regexp is a variable defined in latex.el.

Value

"{[^}]*}[       ]*\\(?:\\[\\(?:[bt]]\\)\\)?"

Documentation

Regexp matching between \begin{tabular*} and column specification.

For tabular* environment only. See LaTeX-insert-ampersands for detail.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar LaTeX-tabular*-skipping-regexp
  ;; Assume width specification contains neither nested curly brace
  ;; pair nor escaped "}".
  (concat "{[^}]*}[ \t]*" (regexp-opt '("[t]" "[b]" "")))
   "Regexp matching between \\begin{tabular*} and column specification.
For tabular* environment only.  See `LaTeX-insert-ampersands' for detail.")