dotfiles/home/default/.local/bin/em

8 lines
147 B
Bash
Executable File

#!/bin/sh
if [ -z $1 ]
then
emacsclient -nw -c --alternate-editor='emacs -nw' .
else
emacsclient -nw -c --alternate-editor='emacs -nw' "$@"
fi