From e4ab5f4ced306797f384921680267d5c20bc1baf Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 2 Sep 2020 00:38:11 +0100 Subject: [PATCH] feat(emacs): add emacsgui shell alias --- zsh/emacs.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/emacs.zsh b/zsh/emacs.zsh index 55b45fe..210e9cc 100644 --- a/zsh/emacs.zsh +++ b/zsh/emacs.zsh @@ -5,6 +5,7 @@ # macOS systems if [[ "$OSTYPE" == "darwin"* ]]; then if [ -f "/Applications/Emacs.app/Contents/MacOS/Emacs" ]; then + alias emacsgui="env TERM=screen-24bit /Applications/Emacs.app/Contents/MacOS/Emacs" alias emacs="env TERM=screen-24bit /Applications/Emacs.app/Contents/MacOS/Emacs -nw" fi