Hi,

On 06 May 2016, 12:10am +0200, Romain Francoise wrote:
> Can you share your config files?

..tmux.conf:

# set terminal
set -g default-terminal tmux-256color
set -g default-command "$SHELL"
set -g update-environment ""


# windows and panes start index 1
setw -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on


# set window history limit
set -g history-limit 100000


# status line
set -g status on
set -g status-left "#[fg=green][#S] "
set -g status-right ""

setw -g monitor-activity on
set -g visual-activity off
set -g visual-bell off


# mouse settings
set -g mouse on

bind -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" 
"select-pane -t =; copy-mode -e; send-keys -M"
bind -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "send-keys -M" 
"select-pane -t =; send-keys -M"
bind -T root -n MouseDown2Pane paste-buffer

bind -t vi-copy WheelUpPane halfpage-up
bind -t vi-copy WheelDownPane halfpage-down


# key bindings
unbind C-b
set -g prefix C-a
bind a send-prefix

set -g mode-keys vi

bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

bind v paste-buffer

bind '"' split-window -c "#{pane_current_path}"
bind '%' split-window -h -c "#{pane_current_path}"

bind '<' swap-window -t -1
bind '>' swap-window -t +1

bind -n C-S-Left previous-window
bind -n C-S-Right next-window


# colours
set -g pane-active-border-bg default

set -g status-bg black
set -g status-fg cyan

setw -g window-status-current-bg default
setw -g window-status-current-fg white

set -g message-fg blue
set -g message-bg white

--8<---------------------------------------------------------


I don’t think that it has anything to do with the config, since it
works with the same config file on Debian stable.  Also, I can
reproduce the behaviour with an empty config file.

Best,

Marcel

Reply via email to