summaryrefslogtreecommitdiff
path: root/itches/emacs
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2019-07-28 19:46:48 +0200
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2019-07-28 19:49:11 +0200
commit5e4af8dca9b9fcf69b5f7decc5926330cc9b2480 (patch)
tree83f7e011eddd9d913e81ee01d00aa5b340d750cc /itches/emacs
parent4530844c7551d906768487aeb81b338ec857e616 (diff)
downloadmemory-leaks-5e4af8dca9b9fcf69b5f7decc5926330cc9b2480.tar.xz
Note down issue with AUCTeX
Need to try the repository version, make a bug report if it's still failing, and ask when are new releases coming out if not.
Diffstat (limited to 'itches/emacs')
-rw-r--r--itches/emacs/language-support.org29
1 files changed, 29 insertions, 0 deletions
diff --git a/itches/emacs/language-support.org b/itches/emacs/language-support.org
index 8d007d3..76f1f5e 100644
--- a/itches/emacs/language-support.org
+++ b/itches/emacs/language-support.org
@@ -57,3 +57,32 @@ of overwriting when pressing $ again.
**** pressing ="= on active region does not surround it with quotes even with electric-pair-mode
TeX-insert-quote erases the region and inserts =``= instead.
**** pressing =$= inserts a single $
+*** =catcode`$= starts a math environment
+Minimal example:
+
+#+BEGIN_SRC latex
+\documentclass{article}
+
+\usepackage{fancyvrb}
+\usepackage{listings}
+\usepackage{xcolor}
+
+\lstset{
+ fancyvrb=true
+}
+
+\begin{document}
+
+\begin{Verbatim}[
+ commandchars=\\\{\},
+ codes={\catcode`$=3},
+ formatcom={\lstset{fancyvrb=false}}
+]
+Things increased: \textcolor{red}{+32.05%} (189818 $\nearrow$ 250657)
+Things decreased: \textcolor{green}{-49.22%} (514 $\searrow$ 261)
+\end{Verbatim}
+
+\end{document}
+#+END_SRC
+
+Can workaround it with =\catcode36= instead of =\catcode`$=.