aboutsummaryrefslogtreecommitdiff
path: root/examples/vim-keys.conf
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2016-01-29 14:53:28 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2016-01-29 14:53:28 +0000
commit2a1bb91bf73366b89d27f2ecfacdc770ceecb72e (patch)
tree6580267bb5a2041d15b846201e77dba1dc71e77d /examples/vim-keys.conf
parenta33bb3e876895ef40ee90e5f89c76184e65c7f10 (diff)
downloadrtmux-2a1bb91bf73366b89d27f2ecfacdc770ceecb72e.tar.gz
rtmux-2a1bb91bf73366b89d27f2ecfacdc770ceecb72e.tar.bz2
rtmux-2a1bb91bf73366b89d27f2ecfacdc770ceecb72e.zip
Remove old examples in favour of one example configuration file.
Diffstat (limited to 'examples/vim-keys.conf')
-rw-r--r--examples/vim-keys.conf36
1 files changed, 0 insertions, 36 deletions
diff --git a/examples/vim-keys.conf b/examples/vim-keys.conf
deleted file mode 100644
index d587d0bf..00000000
--- a/examples/vim-keys.conf
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: vim-keys.conf,v 1.2 2010-09-18 09:36:15 nicm Exp $
-#
-# vim-keys.conf, v1.2 2010/09/12
-#
-# By Daniel Thau. Public domain.
-#
-# 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
-# tmux analogue. This is intended for tmux 1.3, which handles pane selection
-# differently from the previous versions
-
-# split windows like vim
-# vim's definition of a horizontal/vertical split is reversed from tmux's
-bind s split-window -v
-bind v split-window -h
-
-# move around panes with hjkl, as one would in vim after pressing ctrl-w
-bind h select-pane -L
-bind j select-pane -D
-bind k select-pane -U
-bind l select-pane -R
-
-# resize panes like vim
-# feel free to change the "1" to however many lines you want to resize by, only
-# one at a time can be slow
-bind < resize-pane -L 1
-bind > resize-pane -R 1
-bind - resize-pane -D 1
-bind + resize-pane -U 1
-
-# bind : to command-prompt like vim
-# this is the default in tmux already
-bind : command-prompt
-
-# vi-style controls for copy mode
-setw -g mode-keys vi