How do I customize listing name: Listing 1: thing -- when I use minted? Here's an MWE:
\documentclass{article}
\usepackage{minted}
% \renewcommand{\lstlistingname}{Something} % doesn't work!
\begin{document}
Some text.
\begin{minted}{python}
for i in range(3):
print i
\end{minted}
Some more text.
\end{document}

minteddocumentation:\renewcommand\listingscaption{Program code}– jub0bs Apr 08 '13 at 11:28