From ffa984e22ebd4b8ce9975abee0106f1a3aefab0d Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Tue, 4 Jan 2022 12:06:12 -0800 Subject: [PATCH] [tmux] reattach-to-user-namespace isn't needed anymore? --- osx/.tmux.conf.local | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/osx/.tmux.conf.local b/osx/.tmux.conf.local index 978c611..044f058 100644 --- a/osx/.tmux.conf.local +++ b/osx/.tmux.conf.local @@ -1,2 +1,10 @@ -set-option -g default-command "reattach-to-user-namespace -l zsh" -bind y run "tmux save-buffer - | reattach-to-user-namespace pbcopy" +# vim: set ft:tmux + +# This was messing with the `PATH` (`path_helper` shenanigans perhaps?), and +# it seems like `pbcopy` and `pbpaste` are working now, so maybe it's not +# needed anymore? + +# set-option -g default-command "reattach-to-user-namespace -l zsh" +# bind y run "tmux save-buffer - | reattach-to-user-namespace pbcopy" +set-option -g default-command "zsh" +bind y run "tmux save-buffer - | pbcopy"