From 6c930fd32d02005c3d93aa1d8c8c2cf81c664088 Mon Sep 17 00:00:00 2001 From: JackLee404 <95456297+JackLee404@users.noreply.github.com> Date: Sat, 20 Aug 2022 20:17:53 +0800 Subject: [PATCH] Update .tmux.conf Fixed bug when run the command 'cut -c3- ~/.tmux.conf | bash -s _apply_configuration' will returned 2. --- .tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index b71bbae..76afd80 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -168,7 +168,7 @@ bind P choose-buffer # choose which buffer to paste from # -- 8< ------------------------------------------------------------------------ source -q ~/.tmux.conf.local -run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration' +run 'cut -c3- ~/.tmux.conf | bash -s _apply_configuration' # EOF