11 lines
247 B
Markdown
11 lines
247 B
Markdown
<%*
|
|
const name = tp.date.now("YYYY-MM-DD_HH-mm-ss");
|
|
await tp.file.rename(name);
|
|
setTimeout(() => {
|
|
const editor = app.workspace.activeEditor?.editor;
|
|
if (editor) {
|
|
editor.setCursor(0, 0);
|
|
editor.focus();
|
|
}
|
|
}, 150);
|
|
-%> |