Permalink
Switch branches/tags
Nothing to show
Find file Copy path
dbe405c Apr 1, 2015
1 contributor

Users who have contributed to this file

10 lines (8 sloc) 262 Bytes
function __launch_emacs
set -l x (emacsclient --alternate-editor '' --eval '(x-display-list)' 2>/dev/null)
if test -z "$x" -o "$x" = nil
emacsclient $argv --alternate-editor '' --create-frame
else
emacsclient $argv --alternate-editor ''
end
end