From 01ecc3f5977a2e175642550975df0c1ae6edd944 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 13 Apr 2014 23:41:36 -0700 Subject: [PATCH] update clipboard to reattach to user so that pbcopy works inside of tmux. --- dotfiles/lib/shellrc/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/shellrc/functions.sh b/dotfiles/lib/shellrc/functions.sh index 867ebcea..64d858b8 100644 --- a/dotfiles/lib/shellrc/functions.sh +++ b/dotfiles/lib/shellrc/functions.sh @@ -104,6 +104,6 @@ function is_osx() { function clipboard() { if is_osx; then - pbcopy + reattach-to-user-namespace pbcopy fi }