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
This commit is contained in:
Kevin 2014-04-30 02:51:12 -04:00
parent d2755888cd
commit a01ce13975
2 changed files with 6 additions and 6 deletions

View file

@ -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}'

View file

@ -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}'