我正在努力改进我的emacs的搜索功能,允许它在其他窗口中搜索(当多个窗口打开时),搜索我当前所在的单词,并通过鼠标单击进行搜索。我使用 unit-at-cursor创建了以下函数:
(defun seek-other-tab ()
(interactive)
(setq unit (elt (unit-at-cursor 'word) 0) // gets the word at which the cursor is
(other-window 1) // get to the next window
(search-forward unit nil nil)