aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-07-14 06:39:25 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-07-14 06:39:25 +0000
commit5ef5bd7c3127f00dca54499b48802bba85953a6a (patch)
tree4ffadd85dae09280feb6bb6b8792d0297ed59b13 /tmux.h
parent7f98193beb9bb6cdc11776478784ad356f32785b (diff)
downloadrtmux-5ef5bd7c3127f00dca54499b48802bba85953a6a.tar.gz
rtmux-5ef5bd7c3127f00dca54499b48802bba85953a6a.tar.bz2
rtmux-5ef5bd7c3127f00dca54499b48802bba85953a6a.zip
Add a "back to indentation" key in copy mode to move the cursor to the first
non-whitespace character. ^ with vi and M-m with emacs key bindings. Another from Kalle Olavi Niemitalo, thanks.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 427ef578..adbcb171 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.356 2009-07-14 06:38:14 nicm Exp $ */
+/* $Id: tmux.h,v 1.357 2009-07-14 06:39:10 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -356,6 +356,7 @@ struct msg_resize_data {
/* Editing keys. */
enum mode_key_cmd {
MODEKEYCMD_BACKSPACE = 0x1000,
+ MODEKEYCMD_BACKTOINDENTATION,
MODEKEYCMD_CHOOSE,
MODEKEYCMD_CLEARSELECTION,
MODEKEYCMD_COMPLETE,