-
|
Hey, i'm trying to make a macro in the Commander plugin to open a local graph in a hover editor, but not sure if it is possible. I see the command of the Hover Editor plugin, "Open new Hover Editor." Can i tell that command explicitly what to open in a new editor? |
Beta Was this translation helpful? Give feedback.
Answered by
pjeby
Apr 7, 2026
Replies: 1 comment 3 replies
-
|
No, but you can just run whatever open command you want afterwards (with a small delay to make sure it's actually open). |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Does it work if you run those commands manually?
I just tried it, and you can't run "open local graph" if there's no active file. I think what you want is to run the command "Open current file in new Hover Editor", followed by "Open local graph". Or perhaps the other order: "Open Local Graph" (which creates a new pane) followed by "Convert active pane to Hover Editor".
Try running those commands manually and see what order works. I think from my experiments you are best off with "Open Local Graph" followed by "Convert to Hover Editor", but I am assuming you are starting from a normal pane, and if you're doing something different that might not work.
(I also don't think auto focus has anyt…