1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

Removing master stuff

This commit is contained in:
Tristan Carel 2011-04-13 17:46:36 +02:00
parent df0b37f9db
commit 0c032aaf81
4 changed files with 0 additions and 32 deletions

View file

@ -1,11 +0,0 @@
# Use daemon capabilities of emacs 23
if "$ZSH/tools/require_tool.sh" emacs 23 2>/dev/null ; then
export EDITOR="$ZSH/plugins/emacs/emacsclient.sh"
alias emacs="$EDITOR --no-wait"
alias e=emacs
alias emasc=emacs
alias emcas=emacs
# create a new X frame
alias emacs_frame='emacsclient --alternate-editor "" --create-frame'
fi

View file

@ -1,10 +0,0 @@
#!/bin/sh
# Starts emacs daemon if not already started.
x=`emacsclient --alternate-editor '' --eval '(x-display-list)' 2>/dev/null`
if [ -z "$x" ] ;then
emacsclient --alternate-editor "" --create-frame $@
else
emacsclient --alternate-editor "" $@
fi

View file

@ -1 +0,0 @@
git-svn-clone-externals

View file

@ -1,10 +0,0 @@
if ! [ -d "$ZSH/plugins/git-svn/git-svn-clone-externals" ] ;then
git clone https://github.com/andrep/git-svn-clone-externals.git
fi
export PATH="$ZSH/plugins/git-svn/git-svn-clone-externals:$PATH"
function git_svn_update {
(cd "$ZSH/plugins/git-svn/git-svn-clone-externals" && \
git pull origin master)
}