mirror of
https://github.com/prurigro/darkcloud-tmuxconfig.git
synced 2024-11-23 07:34:10 -05:00
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:
parent
d2755888cd
commit
a01ce13975
2 changed files with 6 additions and 6 deletions
|
@ -59,9 +59,9 @@ bind C-r source-file /etc/tmux.conf
|
||||||
bind \ set-option -g status on
|
bind \ set-option -g status on
|
||||||
bind C-\ set-option -g status off
|
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)
|
# c and ctrl-c to create a new pane in the current path and in home respectively
|
||||||
bind -r c new-window
|
bind c new-window -c '#{pane_current_path}'
|
||||||
bind -r C-c new-window -c '#{pane_current_path}'
|
bind C-c new-window
|
||||||
#
|
#
|
||||||
# [ and ] to splitting the window into top/bottom and left/right respectively
|
# [ and ] to splitting the window into top/bottom and left/right respectively
|
||||||
bind -r [ split-window -v -c '#{pane_current_path}'
|
bind -r [ split-window -v -c '#{pane_current_path}'
|
||||||
|
|
|
@ -59,9 +59,9 @@ bind C-r source-file /etc/tmux.conf
|
||||||
bind \ set-option -g status on
|
bind \ set-option -g status on
|
||||||
bind C-\ set-option -g status off
|
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)
|
# c and ctrl-c to create a new pane in the current path and in home respectively
|
||||||
bind -r c new-window
|
bind c new-window -c '#{pane_current_path}'
|
||||||
bind -r C-c new-window -c '#{pane_current_path}'
|
bind C-c new-window
|
||||||
#
|
#
|
||||||
# [ and ] to splitting the window into top/bottom and left/right respectively
|
# [ and ] to splitting the window into top/bottom and left/right respectively
|
||||||
bind -r [ split-window -v -c '#{pane_current_path}'
|
bind -r [ split-window -v -c '#{pane_current_path}'
|
||||||
|
|
Loading…
Reference in a new issue