-
Notifications
You must be signed in to change notification settings - Fork 56
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
Frame visibility on top #46
Comments
I have the same problem, but I don't think this has to do with org-capture-extension. |
I couldn't work around the issue so I just hacked away with Hammerspoon. Add the following to your function emacsclientWatcher(appName, eventType, appObject)
if (eventType == hs.application.watcher.activated) then
if (appName == "Emacsclient") then
-- Bring Emacs to Front
hs.osascript.applescript('tell application "Emacs" to activate')
end
end
end
appWatcher = hs.application.watcher.new(emacsclientWatcher)
appWatcher:start() |
Nice workaround @dangom, thanks! |
I ended up doing the capture in Org mode directly, so did not try this again. Feel free to close if the workaround is good enough for you |
Just curious, what do you mean by "directly"?
|
Sure, I use a variant of https://www.reddit.com/r/emacs/comments/83frxm/reading_managing_annotating_and_highlighting/dvhi9ba/ |
So basically copy-paste?
|
Yes, it was the lowest common denominator across reading RSS, emails and browser. |
The Emacs capture frame opens but is hidden by the browser (Firefox) window. I am using macOS so went with the Applescript handler. Is there a way to display the capture frame on top of the other windows? Or switch to the frame directly?
The text was updated successfully, but these errors were encountered: