view unixSoft/otherbin/emacs.sh @ 398:1cda3348f36b

emacs f4 dwim: bind rust files to running tests with cargo
author Augie Fackler <raf@durin42.com>
date Mon, 25 Jul 2016 23:12:48 -0400
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

#!/bin/sh
if [ "`uname`" = "Darwin" ] ; then
    open -a emacs "$@"
else
    emacs -nw "$@"
fi