1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,11 +0,0 @@ |
1 |
-# Use daemon capabilities of emacs 23 |
|
2 |
-if "$ZSH/tools/require_tool.sh" emacs 23 2>/dev/null ; then |
|
3 |
- export EDITOR="$ZSH/plugins/emacs/emacsclient.sh" |
|
4 |
- alias emacs="$EDITOR --no-wait" |
|
5 |
- alias e=emacs |
|
6 |
- |
|
7 |
- alias emasc=emacs |
|
8 |
- alias emcas=emacs |
|
9 |
- # create a new X frame |
|
10 |
- alias emacs_frame='emacsclient --alternate-editor "" --create-frame' |
|
11 |
-fi |
12 | 1 |
deleted file mode 100755 |
... | ... |
@@ -1,10 +0,0 @@ |
1 |
-#!/bin/sh |
|
2 |
- |
|
3 |
-# Starts emacs daemon if not already started. |
|
4 |
- |
|
5 |
-x=`emacsclient --alternate-editor '' --eval '(x-display-list)' 2>/dev/null` |
|
6 |
-if [ -z "$x" ] ;then |
|
7 |
- emacsclient --alternate-editor "" --create-frame $@ |
|
8 |
-else |
|
9 |
- emacsclient --alternate-editor "" $@ |
|
10 |
-fi |
2 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,10 +0,0 @@ |
1 |
- |
|
2 |
-if ! [ -d "$ZSH/plugins/git-svn/git-svn-clone-externals" ] ;then |
|
3 |
- git clone https://github.com/andrep/git-svn-clone-externals.git |
|
4 |
-fi |
|
5 |
-export PATH="$ZSH/plugins/git-svn/git-svn-clone-externals:$PATH" |
|
6 |
- |
|
7 |
-function git_svn_update { |
|
8 |
- (cd "$ZSH/plugins/git-svn/git-svn-clone-externals" && \ |
|
9 |
- git pull origin master) |
|
10 |
-} |