Skip to content
New issue

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

🧩 logseq.Editor.insertAtEditingCursor #18

Open
utterances-bot opened this issue Apr 27, 2024 · 2 comments
Open

🧩 logseq.Editor.insertAtEditingCursor #18

utterances-bot opened this issue Apr 27, 2024 · 2 comments

Comments

@utterances-bot
Copy link

https://plugins-doc.logseq.com/logseq/Editor/insertAtEditingCursor

Copy link

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"

@YU000jp
Copy link

YU000jp commented Jun 22, 2024

@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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants