summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/keybindings.el2
-rw-r--r--modules/music-config.el1
2 files changed, 2 insertions, 1 deletions
diff --git a/modules/keybindings.el b/modules/keybindings.el
index 9d5ba454..462fde24 100644
--- a/modules/keybindings.el
+++ b/modules/keybindings.el
@@ -108,7 +108,7 @@ Errors if VAR is unbound, not a non-empty string, or the file does not exist."
;; Avoid hostile bindings
(keymap-global-unset "C-x C-f") ;; find-file-read-only
(keymap-global-set "C-x C-f" #'find-file)
-(keymap-global-unset "C-z") ;; suspend-frame is accidentally hit often
+(keymap-global-set "C-z" (make-sparse-keymap)) ;; replace suspend-frame with prefix map
(keymap-global-unset "M-o") ;; facemenu-mode
;; Add commonly-used general keybindings
diff --git a/modules/music-config.el b/modules/music-config.el
index 9542075f..d281c329 100644
--- a/modules/music-config.el
+++ b/modules/music-config.el
@@ -241,6 +241,7 @@ Signals user-error if missing or deleted."
Directories (trailing /) are added recursively; files added singly."
(interactive)
(let* ((completion-ignore-case t)
+ (orderless-smart-case nil)
(candidates (cj/music--collect-entries-recursive cj/music-root))
(choice-rel (completing-read "Choose music file or directory: "
(cj/music--completion-table candidates)