如何在 minted 中为超过 2 行的代码块启用行号?

如何在 minted 中为超过 2 行的代码块启用行号?

我倾向于在整个文档中使用相同的设置。因此,我有以下设置:

\usepackage[outputdir=build_dir]{minted}
\setminted{
    xleftmargin=2em,
    fontsize=\footnotesize,
    breaklines,
    baselinestretch=1,
    bgcolor=minted_block_bg,
    linenos=true
}

我唯一的问题是,有时我的代码块只有 1 或 2 行,为这些代码块启用行号毫无意义。我想继续使用上述代码中的默认设置,但我希望能够仅为超过 2 行的代码块启用行号。这可能吗?

相关内容