このような関数を使用して、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関数のデフォルト値を使用したい。
やりたいことは。
- 単語をダブルクリックして選択します。
replace-string-from-top
デフォルト値で選択された単語で関数を呼び出します。
関数を書き込もうとしましたが、できませんでした。
どうすればいいですか?