mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 01:46:43 +00:00
14 lines
377 B
Bash
Executable File
14 lines
377 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Defaults
|
|
EMACSCLIENT="emacsclient"
|
|
ALTERNATE_EDITOR="nano"
|
|
|
|
# Set to binary bundled in Emacs.app if it exists
|
|
if [ -f "/Applications/Emacs.app/Contents/MacOS/bin/emacsclient" ]; then
|
|
EMACSCLIENT="env TERM=screen-24bit /Applications/Emacs.app/Contents/MacOS/bin/emacsclient"
|
|
fi
|
|
|
|
# Execute emacsclient
|
|
exec $EMACSCLIENT --alternate-editor=$ALTERNATE_EDITOR "$@"
|