kjshen

Results 2 issues of kjshen

Hello, I used to be able to use ``` \SIrange[% exponent-to-prefix=true ,scientific-notation=engineering ,zero-decimal-to-integer=true ,range-units=repeat ]{100}{10000000}{\W} ``` and produce ![grafik](https://user-images.githubusercontent.com/45091615/138549941-c46d68f3-b6af-4235-bb4e-554ded650197.png) However, I'm unable to reproduce this with the new options and...

enhancement

The following minimal working example ``` \documentclass{article} \usepackage{minted} \setminted{autogobble} \begin{document} \begin{minted}[autogobble]{c} printf("hello, world"); \end{minted} \begin{minted}[gobble=4]{c} printf("hello, world"); \end{minted} \begin{minted}{c} printf("hello, world"); \end{minted} \end{document} ``` results in: ![grafik](https://github.com/gpoore/minted/assets/45091615/0efcb041-2005-4977-b3a4-2d9947e9db85) The first listing...