mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 16:28:48 +00:00
Update, from Daniel Thau.
This commit is contained in:
parent
89c07dedd9
commit
fe3621cbc5
@ -1,23 +1,24 @@
|
|||||||
# $Id: vim-keys.conf,v 1.1 2010-01-17 16:24:09 nicm Exp $
|
# $Id: vim-keys.conf,v 1.2 2010-09-18 09:36:15 nicm Exp $
|
||||||
#
|
#
|
||||||
# vim-keys.conf, v1.0 2010/01/15
|
# vim-keys.conf, v1.2 2010/09/12
|
||||||
#
|
#
|
||||||
# By Daniel Thau. Public domain.
|
# By Daniel Thau. Public domain.
|
||||||
#
|
#
|
||||||
# This configuration file binds many vi- and vim-like bindings to the
|
# This configuration file binds many vi- and vim-like bindings to the
|
||||||
# appropriate tmux key bindings. Note that for many key bindings there is no
|
# appropriate tmux key bindings. Note that for many key bindings there is no
|
||||||
# tmux analogue.
|
# tmux analogue. This is intended for tmux 1.3, which handles pane selection
|
||||||
|
# differently from the previous versions
|
||||||
|
|
||||||
# split windows like vim
|
# split windows like vim
|
||||||
# vim's definition of a horizontal/vertical split is reversed from tmux's
|
# vim's definition of a horizontal/vertical split is reversed from tmux's
|
||||||
bind s split-window -v
|
bind s split-window -v
|
||||||
bind v split-window -h
|
bind v split-window -h
|
||||||
|
|
||||||
# move around panes with j and k, a bit like vim
|
# move around panes with hjkl, as one would in vim after pressing ctrl-w
|
||||||
# as of tmux 1.1, there is no way to move based on pane position (ie, no way to
|
bind h select-pane -L
|
||||||
# move the pane to the right)
|
bind j select-pane -D
|
||||||
bind j down-pane
|
bind k select-pane -U
|
||||||
bind k up-pane
|
bind l select-pane -R
|
||||||
|
|
||||||
# resize panes like vim
|
# resize panes like vim
|
||||||
# feel free to change the "1" to however many lines you want to resize by, only
|
# feel free to change the "1" to however many lines you want to resize by, only
|
||||||
|
Loading…
Reference in New Issue
Block a user