When I use tabulation inside the minted environment in pdflatex, they show as normal (several spaces).
But when I use xelatex, they appear as ^^I.
Example (before each letter a b c, there is space-tabulation-space) :
\documentclass{standalone}
\usepackage{minted}
\begin{document}
\begin{minipage}{6cm}
\begin{minted}{c}
a b c
\end{minted}
\end{minipage}
\end{document}
In pdflatex I obtain :

Using xelatex, I obtain :

I tried different things to obtain the same behavior for tabulation in xelatex, but did not succeed. How can I do to obtain correct tabulation in minted under xelatex ?
mintedneedsxelatexto write tabs to a temporary external file, butxelatexrequires a special setting to write literal tabs: http://tex.stackexchange.com/questions/58732/how-to-output-a-tabulation-into-a-file/58740#58740 – G. Poore Sep 05 '13 at 14:40