From cfcc9cc88e564711f3d811b9aaa1d2c3edf476da Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Thu, 2 Aug 2012 20:24:11 +0200 Subject: [PATCH] * 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. --- lisp/ChangeLog | 7 +++++++ lisp/textmodes/reftex-vars.el | 23 ++++++++++++----------- 2 files changed, 19 insertions(+), 11 deletions(-) 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 -- 2.39.2