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 | 0158baa8669c36937b886f3c0c2de115c4e3aaf3 (patch) | |
| tree | cb9f9de16ed5dc98c799bdb0a61965853da58c32 /modules/system-utils.el | |
| parent | f6f78847238cd34ceb625dd50906243a34236b20 (diff) | |
| download | dotemacs-0158baa8669c36937b886f3c0c2de115c4e3aaf3.tar.gz dotemacs-0158baa8669c36937b886f3c0c2de115c4e3aaf3.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 " ▼")) |
