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

8 lines
147 B
Plaintext
Raw Normal View History

2023-05-12 14:06:40 -04:00
#!/bin/sh
if [ -z $1 ]
then
emacsclient -nw -c --alternate-editor='emacs -nw' .
else
emacsclient -nw -c --alternate-editor='emacs -nw' "$@"
fi