emacs 中是否有一个设置可以记住多个会话中的搜索/替换字符串?
%> emacs -nw fileA
<replace X with Y>
%> emacs -nw fileB
<replace>
应自动替换X
为Y
(无需再次输入两者)
答案1
savehist-mode
对于这种保存/恢复,有专门的方法:
(savehist-mode 1)
(add-to-list 'savehist-additional-variables 'query-replace-defaults)