4

接受搜索时,如何在搜索字符串的开头或结尾找到点?

所以说你做Cs“foobar”,当我按下RET时,我想把我的光标放在找到的字符串的末尾,如果我按下C-RET,我想把光标放在开头。

谢谢

4

1 回答 1

2

试试这个:

(defun my-isearch-exit-other-end ()
  "Exit isearch at the other end"
  (interactive)
  (when isearch-forward (goto-char isearch-other-end))
  (isearch-exit))

(define-key isearch-mode-map (kbd "<C-return>") 'my-isearch-exit-other-end)
于 2012-07-27T16:45:45.243 回答