I would like to be able to do “open in default app” on images in my (obsidian) notes, but faster than using RMB menu. Something like shift+LMB on an image. I have an idea how to achieve that in AHK, but I would prefer to use something native to Obsidian. Any idea, pls?
Guess nobodys interested in this topic so I’ll just post my .ahk code that solves this for me in case anybody has a use for it
(obviously done for my screen and my user case, so you need to adapt it to yours before use)
~+LButton::
If WinActive("ahk_exe Obsidian.exe")
{
CoordMode, Mouse, Screen
MouseGetPos, xPozice, yPozice
MouseClick, right
MouseClick, left, xPozice+140, yPozice+180
}
Return
Return