X-Git-Url: http://git.iain.cx/?p=profile.git;a=blobdiff_plain;f=.tmux.conf;h=9b7e9d0ca8ad2dd3c546fdc8007951b7a9c4f145;hp=5dc79dcbc03e6e9ea383eed9b377ed19993b5f3e;hb=900d32166ef407f9ed94cd38865dbb12754d4644;hpb=3e3bd26c874890ecfb30106eaf4523c7bab02a65 diff --git a/.tmux.conf b/.tmux.conf index 5dc79dc..9b7e9d0 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -141,7 +141,10 @@ bind { copy-mode -u bind '"' list-buffers \; command-prompt -p "Choose buffer to show:" 'show-buffer -b %1' bind "'" new-window -n "[buffer]" "cat > /dev/null" \; paste-buffer # Toggle mouse mode as it is useful despite the flaws listed above. -bind C-m set -g mouse-resize-pane \; set -g mouse-select-pane \; set -g mouse-select-window \; set -g mode-mouse +# As of tmux 1.7 mode-mouse has three possible values so we can no +# longer use an implied toggle. +bind C-m set -g mouse-resize-pane on \; set -g mouse-select-pane on \; set -g mouse-select-window on \; set -g mode-mouse copy-mode +bind M-m set -g mouse-resize-pane off \; set -g mouse-select-pane off \; set -g mouse-select-window off \; set -g mode-mouse off ################################################################################ # Fix missing binds in Vi modes. @@ -201,6 +204,9 @@ setw -g window-status-activity-fg white ################################################################################ # Don't update the title bar. set -g set-titles off +set -g allow-rename off +# Allow pane renames if no name was explicitly set. +set -g automatic-rename on # Status line black on white. set -g status-attr none set -g status-bg white @@ -215,5 +221,3 @@ set -g status-right '#[fg=white,bg=colour8][#H:#S]' # Window flags. setw -g window-status-current-format '[#I.#P#F #W]' setw -g window-status-format ' #I.#P#F #W ' -# Don't set window name. XXX: Issue with PROMPT_COMMAND. -#setw -g automatic-rename off