Sam

Results 134 comments of Sam

@NoxLi You could do something like: ``` tp.file.tags.map(tag => tag.replace("#", "")) ```

can't reproduce this on iPad. Assuming it is an error in implementation and not a bug in the code.

Hi! It looks like there is a permissions error when trying to access `/usr/local/bin` to run `iCalBuddy`. Are you comfortable with the command line? If not, this is going to...

@dgurkaynak that seems weird that the container app needs permission and not the iCalBuddy script itself. I know with some of those screens you can drag/drop apps on the list...

There isn't a way for a plugin to control syncing as far as I know.

All templates does is run `exec` using node's `child_process`: https://nodejs.org/api/child_process.html#child_processexeccommand-options-callback Here's the place in the code this is defined: https://github.com/SilentVoid13/Templater/blob/78d2970f5287d6832664b0e5bfbddb99366a1988/src/core/functions/user_functions/UserSystemFunctions.ts#L87 If you have an improvement please open a PR

Yeahhhhh it was using a sync method that didn't account for folders, so I changed it. I tested it without an `await` and was getting results so thought I dodged...

This is a caching problem. Templater is trying to get the frontmatter values before obsidian has had a chance to index/cache them. A workaround would be to read the value...