import { getCursor, insertAtCursor, moveCursor, } from "@silverbulletmd/plugos-silverbullet-syscall/editor"; export async function insertQuery() { let cursorPos = await getCursor(); await insertAtCursor(`\n\n`); await moveCursor(cursorPos + 12); }