-
|
Hi. Does anyone know how to make minibuffer completion for note file searching case-insensitive? I like to title my notes with capitalized titles, but denote names files in lower case. This makes it so that if I want to create a new note with capitalized titles with the I currently have the following variables set to try and make searching for notes case insensitive, but the problem persists. (setq read-file-name-completion-ignore-case t
completion-ignore-case t
read-buffer-completion-ignore-case t) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
|
With those settings, minibuffer completion should already ignore case. However, if you are using the orderless package, you also need the following: (setq orderless-smart-case nil) |
Beta Was this translation helpful? Give feedback.
-
|
Is there another setting that I may be missing? I use Helm-M-x in the search (Spacemacs). With the settings here I can search in lower case, and it fill find files in both upper and lower case. However, when I search in Mixed case, it does not find the lowercase filenames. So I cannot start typing "Note Title" to see if I already have a not named "Note Title", because the filename will be --note_title-- SOLVED:
is the required variable in this case. |
Beta Was this translation helpful? Give feedback.
-
|
I'm happy with the solution to use built in solutions. Just added my comment to add the missing variable for Helm users. Works great now. |
Beta Was this translation helpful? Give feedback.
With those settings, minibuffer completion should already ignore case. However, if you are using the orderless package, you also need the following: