Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
Upcoming (TBD)
==============

Bug Fixes
--------
* Limit Alt-R bindings to Emacs mode.


Internal
--------
* Only read "my" configuration files once, rather than once per call to read_my_cnf_files
* Only read "my" configuration files once, rather than once per call to read_my_cnf_files.


1.38.3 (2025/08/21)
Expand Down
2 changes: 1 addition & 1 deletion mycli/key_bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _(event: KeyPressEvent) -> None:
else:
search_history(event)

@kb.add("escape", "r", filter=control_is_searchable)
@kb.add("escape", "r", filter=control_is_searchable & emacs_mode)
def _(event: KeyPressEvent) -> None:
"""Search history using fzf when available."""
_logger.debug("Detected <alt-r> key.")
Expand Down