From a01ce139751a94720f0d5627032a58993d3eccd7 Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 30 Apr 2014 02:51:12 -0400 Subject: [PATCH] c and ctrl-c are reversed (c opens in the current dir and ctrl-c in $HOME), and they're no longer repeatable as this was causing more headache than it was worth --- tmux.normal.conf | 6 +++--- tmux.powerline.conf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tmux.normal.conf b/tmux.normal.conf index 3c50077..2fac8fe 100644 --- a/tmux.normal.conf +++ b/tmux.normal.conf @@ -59,9 +59,9 @@ bind C-r source-file /etc/tmux.conf bind \ set-option -g status on bind C-\ set-option -g status off # -# c and ctrl-c to create a new pane in home and at the current path respectively (with repetition) -bind -r c new-window -bind -r C-c new-window -c '#{pane_current_path}' +# c and ctrl-c to create a new pane in the current path and in home respectively +bind c new-window -c '#{pane_current_path}' +bind C-c new-window # # [ and ] to splitting the window into top/bottom and left/right respectively bind -r [ split-window -v -c '#{pane_current_path}' diff --git a/tmux.powerline.conf b/tmux.powerline.conf index 0789faa..8588917 100644 --- a/tmux.powerline.conf +++ b/tmux.powerline.conf @@ -59,9 +59,9 @@ bind C-r source-file /etc/tmux.conf bind \ set-option -g status on bind C-\ set-option -g status off # -# c and ctrl-c to create a new pane in home and at the current path respectively (with repetition) -bind -r c new-window -bind -r C-c new-window -c '#{pane_current_path}' +# c and ctrl-c to create a new pane in the current path and in home respectively +bind c new-window -c '#{pane_current_path}' +bind C-c new-window # # [ and ] to splitting the window into top/bottom and left/right respectively bind -r [ split-window -v -c '#{pane_current_path}'