epwalsh / obsidian.nvim

Obsidian 🤝 Neovim
Apache License 2.0
3.3k stars 150 forks source link

Make searching for notes by filename case insensitive #620

Closed ibash closed 2 weeks ago

ibash commented 3 weeks ago

I have a note named "Rob Snyder.md". When I tried to link to it with cmp like "[[rob " the note wasn't found.

After this change the note is found. Note that ignore_case will set the --ignore-case flag in the rg command. However that flag is ignored and instead --glob-case-insensitive is what affects results.