gpt4 book ai didi

emacs - 将 elisp 函数应用于任何文件

转载 作者:行者123 更新时间:2023-12-04 22:59:38 26 4
gpt4 key购买 nike

如何将 elisp 函数应用于不在打开缓冲区中的特定文件?

例如 (my/apply delete-duplicate-lines "~/tmp")

最佳答案

我想你想做

(with-current-buffer (find-file-noselect "~/tmp")
(delete-duplicate-lines (point-min) (point-max))
(save-buffer))

如果您想了解有关如何以编程方式操作缓冲区内容的更多信息,请阅读此 section of the manual

关于emacs - 将 elisp 函数应用于任何文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29619102/

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