why tmux panel switch is vim-like?how to change -


i begin use tmux ,and it's great ,but when split window,the default hjkl vim-like pane switch,so why? how input hjkl? here config

unbind c-b set -g prefix c-q set -g default-terminal "screen-256color" set -g display-time 3000 set -g history-limit 65535 set -g base-index 1 set -g pane-base-index 1 set -s escape-time 0 setw -g monitor-activity on set -g visual-activity on set-option -g mouse-select-pane on  #-- bindkeys --#  bind -n m-left select-pane -l bind -n m-right select-pane -r bind -n m-up select-pane -u bind -n m-down select-pane -d unbind '"' bind-key - splitw -v unbind % bind-key | split-window -h #-- statusbar --#  set -g status-justify centre  set -g status-left "#[fg=green]#s:w#i.p#p#[default]" set -g status-left-attr bright set -g status-left-length 20  set -g status-right "#[fg=green]#(/usr/bin/uptime)#[default] • #[fg=green]#(cut -d ' ' -f 1-3 /proc/loadavg)#[default]" set -g status-right-attr bright  set -g status-utf8 on set -g status-interval 1   setw -g automatic-rename off  #set -g status-bg black #set -g status-fg yellow  #setw -g window-status-current-attr bright #setw -g window-status-current-bg red #setw -g window-status-current-fg white  #-- colorscheme --# #-- see also: https://github.com/seebi/tmux-colors-solarized --#  # default statusbar colors set -g status-bg colour235 #base02 set -g status-fg colour136 #yellow set -g status-attr default  # default window title colors setw -g window-status-fg colour244 setw -g window-status-bg default #setw -g window-status-attr dim  # active window title colors setw -g window-status-current-fg colour166 #orange setw -g window-status-current-bg default #setw -g window-status-current-attr bright  # pane border set -g pane-border-fg colour235 #base02 set -g pane-active-border-fg colour240 #base01  # message text set -g message-bg colour235 #base02 set -g message-fg colour166 #orange  # pane number display set -g display-panes-active-colour colour33 #blue set -g display-panes-colour colour166 #orange  # clock setw -g clock-mode-colour colour64 #green 

unbind-key j  bind-key j select-pane -d   unbind-key k  bind-key k select-pane -u  unbind-key h  bind-key h select-pane -l  unbind-key l  bind-key l select-pane -r 

enables pane switching h, j , on, if meant =)


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -