2007-01-28 00:28:01 +00:00
|
|
|
### emacs.bash --- contact/resume an existing Emacs, or start a new one
|
|
|
|
|
2010-01-13 08:35:10 +00:00
|
|
|
## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
2007-01-28 00:28:01 +00:00
|
|
|
## Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
## Author: Noah Friedman
|
|
|
|
|
|
|
|
## This file is part of GNU Emacs.
|
|
|
|
|
2008-05-15 07:32:14 +00:00
|
|
|
## GNU Emacs is free software: you can redistribute it and/or modify
|
2007-01-28 00:28:01 +00:00
|
|
|
## it under the terms of the GNU General Public License as published by
|
2008-05-15 07:32:14 +00:00
|
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
|
|
## (at your option) any later version.
|
2007-01-28 00:28:01 +00:00
|
|
|
|
|
|
|
## GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
|
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-05-15 07:32:14 +00:00
|
|
|
## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2007-01-28 00:28:01 +00:00
|
|
|
|
|
|
|
### Commentary:
|
|
|
|
|
2008-10-30 04:37:40 +00:00
|
|
|
## This file is obsolete. Use emacsclient -a instead.
|
|
|
|
|
2007-01-28 00:28:01 +00:00
|
|
|
## This defines a bash command named `edit' which contacts/resumes an
|
|
|
|
## existing emacs or starts a new one if none exists.
|
|
|
|
|
|
|
|
## One way or another, any arguments are passed to emacs to specify files
|
|
|
|
## (provided you have loaded `resume.el').
|
|
|
|
|
|
|
|
## This function assumes the emacs program is named `emacs' and is somewhere
|
|
|
|
## in your load path. If either of these is not true, the most portable
|
|
|
|
## (and convenient) thing to do is to make an alias called emacs which
|
|
|
|
## refers to the real program, e.g.
|
|
|
|
##
|
|
|
|
## alias emacs=/usr/local/bin/gemacs
|
1999-10-03 12:39:42 +00:00
|
|
|
|
|
|
|
function edit ()
|
|
|
|
{
|
|
|
|
local windowsys="${WINDOW_PARENT+sun}"
|
|
|
|
|
|
|
|
windowsys="${windowsys:-${DISPLAY+x}}"
|
|
|
|
|
|
|
|
if [ -n "${windowsys:+set}" ]; then
|
|
|
|
# Do not just test if these files are sockets. On some systems
|
|
|
|
# ordinary files or fifos are used instead. Just see if they exist.
|
2005-02-05 12:00:57 +00:00
|
|
|
if [ -e "${HOME}/.emacs_server" -o -e "/tmp/emacs${UID}/server" ]; then
|
1999-10-03 12:39:42 +00:00
|
|
|
emacsclient "$@"
|
|
|
|
return $?
|
|
|
|
else
|
|
|
|
echo "edit: starting emacs in background..." 1>&2
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "${windowsys}" in
|
|
|
|
x ) (emacs "$@" &) ;;
|
2007-09-21 03:48:43 +00:00
|
|
|
sun ) echo "unsupported window system"; return 1 ;;
|
1999-10-03 12:39:42 +00:00
|
|
|
esac
|
2003-02-04 14:56:31 +00:00
|
|
|
else
|
1999-10-03 12:39:42 +00:00
|
|
|
if jobs %emacs 2> /dev/null ; then
|
|
|
|
echo "$(pwd)" "$@" >| ${HOME}/.emacs_args && fg %emacs
|
|
|
|
else
|
|
|
|
emacs "$@"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
# arch-tag: 1e1b74b9-bf2c-4b23-870f-9eebff7515cb
|
2007-01-28 00:28:01 +00:00
|
|
|
### emacs.bash ends here
|