Merge pull request #677 from mjbamford/fix_tmux_key_bindings

Fix iTerm key bindings broken in tmux 2.1
This commit is contained in:
Yan Pritzker 2016-07-23 14:55:55 -05:00 committed by GitHub
commit 19577a0635

View File

@ -79,6 +79,9 @@ set -g history-limit 10000
# New windows/pane in $PWD # New windows/pane in $PWD
bind c new-window -F "#{pane_current_path}" bind c new-window -F "#{pane_current_path}"
# Fix key bindings broken in tmux 2.1
set -g assume-paste-time 0
# force a reload of the config file # force a reload of the config file
unbind r unbind r
bind r source-file ~/.tmux.conf \; display "Reloaded!" bind r source-file ~/.tmux.conf \; display "Reloaded!"