We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://plugins-doc.logseq.com/logseq/Editor/insertAtEditingCursor
The text was updated successfully, but these errors were encountered:
Is there a command to insert around editing cursor? Eg. I want smth like
insertAroundEditingCursor('[[', ']]')
so that I can create a shortcut for "insert a page reference"
Sorry, something went wrong.
@neongreen
Is there a command to insert around editing cursor? Eg. I want smth like insertAroundEditingCursor('[[', ']]') so that I can create a shortcut for "insert a page reference"
Several steps are required. The "pos" accept the position of the letter. https://logseq.github.io/plugins/types/BlockCursorPosition.html Thus, the following process is possible.
const blockEntity = await logseq.Editor.getCurrentBlock() if(blockEntity){ const blockPos = await logseq.Editor.getEditingCursorPosition() if(blockPos){ await logseq.Editor.insertAtEditingCursor("[[]]") setTimeout(() => { await logseq.Editor.editBlock(blockEntity.uuid, { pos: blockPos.pos+2 }) }, 200) } }
I have never done anything similar so I am guessing. This is a TypeScript expression. (Sorry, I forgot how to write JavaScript)
No branches or pull requests
https://plugins-doc.logseq.com/logseq/Editor/insertAtEditingCursor
The text was updated successfully, but these errors were encountered: