我正在使用这样的函数来替换 Emacs 中的字符串。
(defun replace-string-from-top ()
(interactive)
(save-excursion
(beginning-of-buffer)
(call-interactively 'replace-string)))
(global-set-key "\C-r" 'replace-string-from-top)
我想通过选择一个单词来使用替换字符串函数的默认值。
我想做的是。
- 通过双击选择一个单词。
- 默认情况下使用所选单词调用
replace-string-from-top
函数。
我试图编写函数,但我做不到。
我该怎么做?