on the subject of notetaking in vim. you can get pretty far if you mess around with the `path` and `iskeyword` options.
Something like this:
```
set path=.,,**
set iskeyword+=/,.,-
nnoremap gl <cmd>exe 'find' expand('<cword>')<cr>
```
if your filepath is unique enough you can have a wiki-style link working. For example
[[261042-fix-thing.md]]
if you press `gl` in the middle of that "link" the expand() function should be able to pick up everything inside the brackets and provide it to the `find` command.
now, i believe `iskeyword` does influence a fair amount of things so don't do it like that. if you mess with it, do it inside a function where you can modify and restore the original value.


