ctrlf
ctrlf copied to clipboard
C-g behaves like RET
Launch Emacs like this:
TEMP="$(mktemp -d | tee /dev/stderr)"
cat >"$TEMP/.emacs" <<EOF
(setq custom-file "/dev/null")
(package-initialize)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(package-install 'ctrlf)
EOF
HOME="$TEMP" emacs
Then in the Emacs splash screen:
-
M-x ctrlf-mode
; -
C-s emacs
; -
C-s
a few more times; -
C-g
.
Now the point is left next to the last instance of the match instead of being reset to the original position.
(Possibly related to #6.)
Yeah, I can confirm this happens exactly as you describe it. I'll look into why that could be occurring when I have some time.
For me, just adding the remap of abort-minibuffers
to ctrlf-cancel
in ctrlf-minibuffer-mode-map
fixed this problem!
Should be addressed by https://github.com/radian-software/ctrlf/pull/114.
The problem seems to be solved, thank you! ;)