Skip to content

Instantly share code, notes, and snippets.

@yoshinari-nomura
Created June 6, 2014 14:16
Show Gist options
  • Select an option

  • Save yoshinari-nomura/79d353c716ee04f97b15 to your computer and use it in GitHub Desktop.

Select an option

Save yoshinari-nomura/79d353c716ee04f97b15 to your computer and use it in GitHub Desktop.
function em () {
EMACS_SERVER_SOCKET_FILE="$TMPDIR/emacs$UID/server"
if [[ -S "$EMACS_SERVER_SOCKET_FILE" ]]; then
emacsclient -n "$@"
else
open -a /Applications/Emacs.app/Contents/MacOS/Emacs "$@"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment