Skip to content

Instantly share code, notes, and snippets.

@imarko
Created December 1, 2022 19:04
Show Gist options
  • Save imarko/533968f8ab10775c9555ace9c2f39e3e to your computer and use it in GitHub Desktop.
Save imarko/533968f8ab10775c9555ace9c2f39e3e to your computer and use it in GitHub Desktop.
Disable C-z suspend in GUI mode but keep it working for tty.
(defun my-suspend ()
(interactive)
(if (controlling-tty-p)
(suspend-emacs)
(suspend-tty)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment