Add an alias that allows calling emacs WITHOUT the emacsclient

For situations where a separate instance of emacs is desired. For
instance configuration testing
This commit is contained in:
Bernhard F.W. Gschaider 2016-08-02 11:17:33 +02:00
parent f5537241a4
commit 4fbd54fcf7

View File

@ -11,6 +11,8 @@
if "$ZSH/tools/require_tool.sh" emacs 24 2>/dev/null ; then if "$ZSH/tools/require_tool.sh" emacs 24 2>/dev/null ; then
export REAL_EMACS_PATH=$(which emacs)
export EMACS_PLUGIN_LAUNCHER="$ZSH/plugins/emacs/emacsclient.sh" export EMACS_PLUGIN_LAUNCHER="$ZSH/plugins/emacs/emacsclient.sh"
# set EDITOR if not already defined. # set EDITOR if not already defined.
@ -26,6 +28,8 @@ if "$ZSH/tools/require_tool.sh" emacs 24 2>/dev/null ; then
# create a new X frame # create a new X frame
alias eframe='emacsclient --alternate-editor "" --create-frame' alias eframe='emacsclient --alternate-editor "" --create-frame'
alias emacsnc="$REAL_EMACS_PATH"
alias enc="$REAL_EMACS_PATH"
# Write to standard output the path to the file # Write to standard output the path to the file
# opened in the current buffer. # opened in the current buffer.