From: Tassilo Horn Date: Thu, 2 Aug 2012 18:24:11 +0000 (+0200) Subject: * textmodes/reftex-vars.el (reftex-default-label-alist-entries): X-Git-Tag: emacs-24.2.90~887 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cfcc9cc88e564711f3d811b9aaa1d2c3edf476da;p=emacs.git * textmodes/reftex-vars.el (reftex-default-label-alist-entries): Add listings, minted, and ctable packages. (reftex-label-alist-builtin): Move listings, minted, and ctable entries before LaTeX. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b0f567ba8e..ce0ee4b9b8b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2012-08-02 Tassilo Horn + + * textmodes/reftex-vars.el (reftex-default-label-alist-entries): + Add listings, minted, and ctable packages. + (reftex-label-alist-builtin): Move listings, minted, and ctable + entries before LaTeX. + 2012-08-02 Bastien Guerry * replace.el (occur): Fix docstring (bug#12122). diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 187c98af21f..fa316ea760d 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -90,6 +90,15 @@ (wrapfig "The wrapfigure environment" (("wrapfigure" ?f nil nil caption))) + (ctable "The ctable package" + (("\\ctable[]{}{}{}" ?t "tab:" "\\ref{%s}" 1 ("table" "Tabelle")))) + + (listings "The listings package" + (("lstlisting" ?l "lst:" "~\\ref{%s}" nil (regexp "[Ll]isting")))) + + (minted "The minted package" + (("minted" ?l "lst:" "~\\ref{%s}" nil (regexp "[Ll]isting")))) + ;; The LaTeX core stuff (LaTeX "LaTeX default environments" (("section" ?s "%S" "~\\ref{%s}" (nil . t) @@ -120,16 +129,7 @@ ;; The label macro is hard coded, but it *could* be defined like this: ;;("\\label{*}" nil nil nil nil) - )) - - (ctable "The ctable package" - (("\\ctable[]{}{}{}" ?t "tab:" "\\ref{%s}" 1 ("table" "Tabelle")))) - - (listings "The listings package" - (("lstlisting" ?l "lst:" "~\\ref{%s}" nil (regexp "[Ll]isting")))) - - (minted "The minted package" - (("minted" ?l "lst:" "~\\ref{%s}" nil (regexp "[Ll]isting"))))) + ))) "The default label environment descriptions. Lower-case symbols correspond to a style file of the same name in the LaTeX distribution. Mixed-case symbols are convenience aliases.") @@ -430,7 +430,8 @@ When nil, follow-mode will be suspended for stuff in unvisited files." (defcustom reftex-default-label-alist-entries '(amsmath endnotes fancybox floatfig longtable picinpar - rotating sidecap subfigure supertab wrapfig LaTeX) + rotating sidecap subfigure supertab wrapfig + listings minted ctable LaTeX) "Default label alist specifications. LaTeX should always be the last entry. The value of this variable is a list of symbols with associations in the constant `reftex-label-alist-builtin'. Check that constant for a full list