Emacs – How to Awake Emacs GUI After Pressing Ctrl+z

emacs

I'm using emacs gui in Gnome. After pressing ctrl+z, emacs window is minimized. However, if I bring the window to front, it doesn't respond any key press and mouse event. I searched the web only found bringing back it within the commandline. But how to reactive emace when using it in a GUI mode ??

Best Answer

If you press C-z by mistake then you can add this to your .emacs to make C-z do nothing:

(global-unset-key (kbd "C-z"))

I did that after pressing C-z many times by accident.

Related Question