8 lines
283 B
TypeScript
8 lines
283 B
TypeScript
import { getCursor, insertAtCursor, moveCursor } from "@silverbulletmd/plugos-silverbullet-syscall/editor";
|
|
|
|
export async function insertQuery() {
|
|
let cursorPos = await getCursor();
|
|
await insertAtCursor(`<!-- #query -->\n\n<!-- #end -->`);
|
|
await moveCursor(cursorPos + 12);
|
|
}
|