Variable: ConTeXt-clean-intermediate-suffixes
ConTeXt-clean-intermediate-suffixes is a customizable variable defined
in context.el.
Value
("\\.tui" "\\.tup" "\\.ted" "\\.tes" "\\.top" "\\.log" "\\.tmp"
"\\.run" "\\.bck" "\\.rlg" "\\.mpt" "\\.mpx" "\\.mpd" "\\.mpo"
"\\.tuo" "\\.tub" "\\.top" "\\.tuc" "-mpgraph\\.mp" "-mpgraph\\.mpd"
"-mpgraph\\.mpo" "-mpgraph\\.mpy" "-mprun\\.mp" "-mprun\\.mpd"
"-mprun\\.mpo" "-mprun\\.mpy")
Documentation
List of regexps matching suffixes of files to be deleted.
The regexps will be anchored at the end of the file name to be matched, that is, you do _not_ have to cater for this yourself by adding \\' or $.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
(defcustom ConTeXt-clean-intermediate-suffixes
;; See *suffixes in texutil.pl.
'("\\.tui" "\\.tup" "\\.ted" "\\.tes" "\\.top" "\\.log" "\\.tmp" "\\.run"
"\\.bck" "\\.rlg" "\\.mpt" "\\.mpx" "\\.mpd" "\\.mpo" "\\.tuo" "\\.tub"
"\\.top" "\\.tuc" "-mpgraph\\.mp" "-mpgraph\\.mpd" "-mpgraph\\.mpo"
"-mpgraph\\.mpy" "-mprun\\.mp" "-mprun\\.mpd" "-mprun\\.mpo" "-mprun\\.mpy")
"List of regexps matching suffixes of files to be deleted.
The regexps will be anchored at the end of the file name to be matched,
that is, you do _not_ have to cater for this yourself by adding \\\\\\=' or $."
:type '(repeat regexp)
:group 'TeX-command)