\\<isearch-mode-map>
With a numeric argument, go to the ARGth absolute occurrence counting from
the beginning of the buffer. To find the next relative occurrence forwards,
-type \\[isearch-repeat-forward] with a numeric argument."
+type \\[isearch-repeat-forward] with a numeric argument.
+You might want to use `isearch-allow-motion' instead of this command."
(interactive "p")
(if (and arg (< arg 0))
(isearch-end-of-buffer (abs arg))
;; don't forward char in isearch-repeat
(setq isearch-just-started t)
(goto-char (point-min))
- (let ((isearch-repeat-on-direction-change nil))
- (isearch-repeat 'forward arg))))
+ (let ((current-direction (if isearch-forward 'forward 'backward))
+ (isearch-repeat-on-direction-change nil))
+ (isearch-repeat 'forward arg)
+ (unless (eq current-direction (if isearch-forward 'forward 'backward))
+ (isearch-repeat current-direction)))))
(defun isearch-end-of-buffer (&optional arg)
"Go to the last occurrence of the current search string.
\\<isearch-mode-map>
With a numeric argument, go to the ARGth absolute occurrence counting from
the end of the buffer. To find the next relative occurrence backwards,
-type \\[isearch-repeat-backward] with a numeric argument."
+type \\[isearch-repeat-backward] with a numeric argument.
+You might want to use `isearch-allow-motion' instead of this command."
(interactive "p")
(if (and arg (< arg 0))
(isearch-beginning-of-buffer (abs arg))
(setq isearch-just-started t)
(goto-char (point-max))
- (let ((isearch-repeat-on-direction-change nil))
- (isearch-repeat 'backward arg))))
+ (let ((current-direction (if isearch-forward 'forward 'backward))
+ (isearch-repeat-on-direction-change nil))
+ (isearch-repeat 'backward arg)
+ (unless (eq current-direction (if isearch-forward 'forward 'backward))
+ (isearch-repeat current-direction)))))
\f
;;; Toggles for `isearch-regexp-function' and `search-default-mode'.
(put 'beginning-of-buffer 'isearch-motion
'((lambda () (goto-char (point-min))) . forward))
(put 'end-of-buffer 'isearch-motion
- '((lambda () (goto-char (point-max))) . backward))
+ '((lambda () (goto-char (point-max)) (recenter -1 t)) . backward))
(put 'scroll-up-command 'isearch-motion
- '((lambda () (goto-char (window-end)) (recenter 1 t)) . forward))
+ '((lambda () (goto-char (window-end)) (recenter 0 t)) . forward))
(put 'scroll-down-command 'isearch-motion
'((lambda () (goto-char (window-start)) (recenter -1 t)) . backward))
;; Handle motion command functions.
((and isearch-allow-motion
(symbolp this-command)
- (get this-command 'isearch-motion))
+ (get this-command 'isearch-motion)
+ ;; Don't override `isearch-yank-on-move' used below.
+ (not (and (eq isearch-yank-on-move 'shift)
+ this-command-keys-shift-translated)))
(let* ((property (get this-command 'isearch-motion))
(function (car property))
(current-direction (if isearch-forward 'forward 'backward))