]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Remove OS X related settings.
authorSimon Ruderich <simon@ruderich.org>
Wed, 13 Oct 2010 20:55:35 +0000 (22:55 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 13 Oct 2010 21:08:22 +0000 (23:08 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 6b42e00fd3d29749f50067c83d913a273620fc2f..da5edc4a98197024afc0b77a4d3df831e75166f1 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -591,23 +591,6 @@ if [[ $uname == Linux ]]; then
     export DEBEMAIL
     DEBFULLNAME='Simon Ruderich'
     export DEBFULLNAME
-
-elif [[ $uname == Darwin ]]; then # Mac OS X
-    # Store the current clipboard in CLIPBOARD before every command so it can
-    # be used in commands.
-    os_darwin_preexec() {
-        export CLIPBOARD="$(pbpaste)"
-    }
-    # Add the function as preexec hook.
-    add-zsh-hook preexec os_darwin_preexec
-
-    # Initialize CLIPBOARD so it's available for completion directly after
-    # startup.
-    CLIPBOARD=""
-    export CLIPBOARD
-
-    # Fetch current URL in clipboard with wget.
-    alias wnc='wget --no-proxy $CLIPBOARD'
 fi