Replies: 1 comment 2 replies
-
Hi @SabinaKu A while back I made a macro called module.exports = async (params) => {
const allMdFiles = params.app.vault.getMarkdownFiles();
const selectedFilePath = await params.quickAddApi.suggester(
allMdFiles.map(f => f.basename),
allMdFiles.map(f => f.path)
);
params.variables.path = selectedFilePath;
} Then create a capture inside that macro. The file path should be |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
firstly thanks for this wonderful plugin.
I would like to use a more flexible QuickAdd Capture. What I mean is: I would like to use a Hotkey. Then QuickAdd asks me what note (and maybe under what heading) I would like to capture something and then asks what text I would like to capture.
I dont know if you guys can just add the button "Capture to: ask for file" in the settings of a capture.
That would be epic!
Thanks
Beta Was this translation helpful? Give feedback.
All reactions