diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-21 05:52:02 -0800 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-21 05:52:02 -0800 |
| commit | 6aaf45e54dd676bd4dc306dc7c9e15ca1f875e65 (patch) | |
| tree | f33279c0a7a5c85164f7380fa65449cc5bb48496 /modules/system-utils.el | |
| parent | 123d3c6920975aa166feec9357bb60a41ae7e195 (diff) | |
| download | dotemacs-6aaf45e54dd676bd4dc306dc7c9e15ca1f875e65.tar.gz dotemacs-6aaf45e54dd676bd4dc306dc7c9e15ca1f875e65.zip | |
fix: add quick-sdcv quit binding and fix calendar-sync sentinel
- Add 'q' keybinding in quick-sdcv-mode to quit-window for easier
dictionary dismissal while reading epubs
- Fix "Selecting deleted buffer" error in calendar-sync by checking
buffer-live-p before accessing process buffer in sentinel
Diffstat (limited to 'modules/system-utils.el')
| -rw-r--r-- | modules/system-utils.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/system-utils.el b/modules/system-utils.el index 2ee7200c..f5af18de 100644 --- a/modules/system-utils.el +++ b/modules/system-utils.el @@ -207,6 +207,8 @@ Logs output and exit code to buffer *external-open.log*." (use-package quick-sdcv :bind ("C-h d" . quick-sdcv-search-input) + :bind (:map quick-sdcv-mode-map + ("q" . quit-window)) :custom (quick-sdcv-dictionary-prefix-symbol "►") (quick-sdcv-ellipsis " ▼")) |
