Variable: TeX-bar-TeX-buttons

TeX-bar-TeX-buttons is a customizable variable defined in tex-bar.el.

Value

(new-file open-file dired kill-buffer save-buffer cut copy paste undo
	  separator tex next-error view bibtex spell)

Documentation

List of buttons available in plain-TeX-mode.

It should be a list in the same format of the BUTTONS parameter in function toolbarx-install-toolbar, often a symbol that labels a button.

Type M-x TeX-bar-TeX-buttons (TeX-bar-TeX-buttons) for a list of available buttons.

Buttons are defined in alists (labels associated to properties that define a button). For a list of variables that hold such alists, see variable TeX-bar-TeX-all-button-alists.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-bar.el
(defcustom TeX-bar-TeX-buttons
  '(new-file open-file dired kill-buffer save-buffer cut copy paste undo
             separator tex next-error view bibtex spell)
  "List of buttons available in `plain-TeX-mode'.
It should be a list in the same format of the BUTTONS parameter
in function `toolbarx-install-toolbar', often a symbol that
labels a button.

Type `\\[TeX-bar-TeX-buttons]' for a list of available buttons.

Buttons are defined in alists (labels associated to properties
that define a button).  For a list of variables that hold such
alists, see variable `TeX-bar-TeX-all-button-alists'."
  :type '(list (set :inline t
                    (const new-file)
                    (const open-file)
                    (const dired)
                    (const kill-buffer)
                    (const save-buffer)
                    (const write-file)
                    (const undo)
                    (const cut)
                    (const copy)
                    (const paste)
                    (const search-forward)
                    (const print-buffer)
                    (const separator)
                    (const tex)
                    (const next-error)
                    (const view)
                    (const file)
                    (const bibtex)
                    (const clean)
                    (const spell))
               ;; (const latex-symbols-experimental)
               (repeat (choice (symbol :tag "Label")
                               (sexp :tag "General element"))))
  :group 'TeX-tool-bar)