You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into an issue where I have emacs running in server mode and I launch emacsclients in terminal mode.
When I try to ace-window from Terminal to GUI emacs, it works just fine. But when I try to switch from GUI emacs to terminal emacs, it doesn't work although the command goes through.
I made a video of the situation, and I also found out about x-send-client-message but I'm not sure where to add this to ace-window.
(defunraiseme ()
(x-send-client-message
nil; DISPLAY - nil is selected frame0; DEST - 0 is root window of displaynil; FROM - nil is selected frame"_NET_ACTIVE_WINDOW"; MESSAGE-TYPE - name of an Atom as a string32; FORMAT - size of the values in bits'(1"_NET_WM_USER_TIME"0) ; VALUES
)
)
ace-window.webm
The text was updated successfully, but these errors were encountered:
Hi. I've tried to debug your example, and found nothing that works in a good way. Neither select-frame-set-input-focus, nor select-frame, nor x-focus-frame. Actually the built-in other-frame command also doesn't work. I think you should raise an Emacs bug about this. It should be fixed in the core.
The only thing I can think of to make it work is stuff like wmctrl, but I don't want to include that dependency in ace-window.
Hello,
I ran into an issue where I have emacs running in server mode and I launch
emacsclients
in terminal mode.When I try to ace-window from Terminal to GUI emacs, it works just fine. But when I try to switch from GUI emacs to terminal emacs, it doesn't work although the command goes through.
I made a video of the situation, and I also found out about
x-send-client-message
but I'm not sure where to add this toace-window
.ace-window.webm
The text was updated successfully, but these errors were encountered: