Skip to content

Commit

Permalink
[#45] Disable blink-matching-paren automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed May 21, 2020
1 parent c7b6ae9 commit 71d1435
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ The format is based on [Keep a Changelog].
minibuffer to search the current user input and the minibuffer
history. Note that this functionality is not compatible with
Selectrum. See [#41].
* We now disable `blink-matching-paren` automatically when entering
CTRLF, because (for some reason) it uses `sit-for` to display its
blink and this of course causes search results to be delayed
([#45]).

### Bugs fixed
* CTRLF previously caused an error during Emacs startup unless the
`map` library was already loaded. This has been fixed ([#49]).

[#41]: https://github.com/raxod502/ctrlf/issues/41
[#45]: https://github.com/raxod502/ctrlf/issues/45
[#49]: https://github.com/raxod502/ctrlf/issues/49

## 1.0 (released 2020-03-31)
Expand Down
3 changes: 2 additions & 1 deletion ctrlf.el
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,8 @@ And self-destruct this hook."
#'ctrlf--minibuffer-before-change-function
nil 'local))
(let ((ctrlf--active-p t)
(cursor-in-non-selected-windows nil))
(cursor-in-non-selected-windows nil)
(blink-matching-paren nil))
(read-from-minibuffer
(ctrlf--prompt) nil keymap nil 'ctrlf-search-history
(thing-at-point 'symbol t))))))
Expand Down

0 comments on commit 71d1435

Please sign in to comment.