Skip to content

Commit

Permalink
Add tmux mousing and winodw max/min
Browse files Browse the repository at this point in the history
  • Loading branch information
derekprior committed Mar 30, 2012
1 parent 4d79f58 commit c981eff
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions tmux.conf
Expand Up @@ -37,11 +37,17 @@ bind -r K resize-pane -U 5
bind -r L resize-pane -R 5 bind -r L resize-pane -R 5


# Mouse Stuff # Mouse Stuff
# set -g mode-mouse on set -g mode-mouse on
# set -g mouse-select-pane on set -g mouse-select-pane on
# set -g mouse-resize-pane on set -g mouse-resize-pane on
# set -g mouse-select-window on set -g mouse-select-window on
setw -g mode-mouse off # setw -g mode-mouse off

# Maximize and restore a pane
unbind Up
bind Up new-window -d -n tmp \; swap-pane -s tmp.1 \; select-window -t tmp
unbind Down
bind Down last-window \; swap-pane -s tmp.1 \; kill-window -t tmp


# 256 Color Terminal # 256 Color Terminal
set -g default-terminal "screen-256color" set -g default-terminal "screen-256color"
Expand Down

0 comments on commit c981eff

Please sign in to comment.