\documentclass{mwrep}
\usepackage{minted}
\usepackage{lipsum}
% question regarding this code
\setlength{\belowcaptionskip}{-10pt}
% end
\begin{document}
\lipsum[1]
\begin{listing}[h]
\begin{verbatim}
1
2
3
4
\end{verbatim}
\caption{test}
\label{lst}
\end{listing}
\lipsum[2]
\begin{figure}[h]
\begin{verbatim}
1
2
3
4
\end{verbatim}
\caption{test}
\label{ver}
\end{figure}
\lipsum[3]
\end{document}
Why does \listing ignore change of \belowcaptionskip? What can I change to make listing affected by it as in case of figure?
How can I make caption of listing be identical with caption of figure in every manner (like fontsize, which on my example is smaller in figure).
