记住会话中的搜索/替换字符串

记住会话中的搜索/替换字符串

emacs 中是否有一个设置可以记住多个会话中的搜索/替换字符串?

%> emacs -nw fileA
<replace X with Y>

%> emacs -nw fileB
<replace>

应自动替换XY(无需再次输入两者)

答案1

savehist-mode对于这种保存/恢复,有专门的方法:

(savehist-mode 1)
(add-to-list 'savehist-additional-variables 'query-replace-defaults)

相关内容