Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Maxime Biais http://www.biais.org/blog/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Run emacs or emacsclient

Automatically run emacs or emacsclient if emacs is already launched.

#!/bin/sh

EMACS="/usr/bin/emacs"
EMACSCLIENT="/usr/bin/emacsclient"

$EMACSCLIENT $@ 2> /dev/null
if [ $? -ne 0 ]; then
   exec $EMACS $@
fi


Put this in your ~/.emacs.el :
;; start emacs server
(server-start)
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS