Skip to content

Instantly share code, notes, and snippets.

@vanadium23
Created June 19, 2023 14:49
Show Gist options
  • Save vanadium23/ed65f9190a3c1037edc0dc4c6d12660e to your computer and use it in GitHub Desktop.
Save vanadium23/ed65f9190a3c1037edc0dc4c6d12660e to your computer and use it in GitHub Desktop.
module.exports = async function (file, folder, tp) {
if (file.path(true) == "Untitled.md") {
let filename = await tp.system.prompt("Как назвать файл?", null, true);
filename = tp.user.sanitaze_filename(filename);
await tp.file.move(`${folder}/${filename}`);
return filename;
}
return file.title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment