Matt Warner

Results 4 comments of Matt Warner

Can reproduce it on my end. Stack trace points toward the template file. https://github.com/foambubble/foam/blob/17cb61948047d53227ebd9eebd1c16472f7c5400/packages/foam-vscode/src/services/templates.ts#L20-L22 Looks like Foam doesn't know where to open the daily note since you don't have a...

For (2) we can update the commands to only show when a user has a workspace. The current commands don't have any `when` clauses to restrict when they are available...

The latest change broke my setup using Obsidian and iCloud. I think this line in `ensure_directories`: ```lua props.path = props.path:gsub("$HOME", get_home()):gsub("~", get_home()) ``` conflicts with my config: ```lua local wikiPath...

Thanks! I unpinned the commit and it is working as expected. I think you are looking for path expansion here rather than a substitution. Quick scan through vim help docs...