dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 611d2d2be2a19405c62992e30124dce032238959
parent 1980c939ef2db81e2b4a0b7a9e4b9f7c61efe0d5
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Sun, 19 Oct 2014 14:24:12 -0700

Bin: Remove ed script

Diffstat:
bin/ed | 19-------------------
1 file changed, 0 insertions(+), 19 deletions(-)

diff --git a/bin/ed b/bin/ed @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -# ed: EDit file or folder with your editor of choice -# -# If you don't supply a argument then it just edits the folder you're in with -# your $EDITOR, but if you do then it edits that file/ folder. It also -# automatically sets your $EDITOR to vim if you don't have it set already. - -if [ "$EDITOR" = "" ]; then - export EDITOR='vim' - echo "Warning: you do not have the EDITOR variable set" - echo "Temporary setting EDITOR to $EDITOR" -fi - -if [[ "$@" == "" ]]; then - $EDITOR . -else - $EDITOR $@ -fi