gpt4 book ai didi

Emacs:打印行号

转载 作者:行者123 更新时间:2023-12-04 23:05:24 25 4
gpt4 key购买 nike

有谁知道如何使用边距中的代码行号打印?我可以显示行号,不能在打印输出中显示。谢谢!

最佳答案

您可以添加带有临时覆盖的行号,并使用 htmlize 将缓冲区转换为 HTML。打包后,您可以使用 lpr 保存 HTML 并打印或浏览器。

(defun htmlize-with-line-numbers ()
(interactive)
(goto-char (point-min))
(let ((n 1))
(while (not (eobp))
(htmlize-make-tmp-overlay (point) (point) `(before-string ,(format "%4d " n)))
(setq n (1+ n))
(forward-line 1)))
(switch-to-buffer (htmlize-buffer)))

这将需要最新版本的 htmlize .

关于Emacs:打印行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13599387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com