diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-27 12:11:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-27 12:11:12 +0000 |
commit | 8d43ed05648ba21ef2ba2b423111696b0dc5a287 (patch) | |
tree | add88ed7e7d7add3c36eb434b0a512186d9f0b58 /usr.bin/tmux/tmux.h | |
parent | 248e7c96313a12990bebc14ef4e1ae12a2cd46ec (diff) |
Add a key to delete to end of line at the prompt (^K in emacs mode, C/D in vi).
From Kalle Olavi Niemitalo.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 80730cfad03..d5934ac8afe 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.56 2009/07/26 21:42:08 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.57 2009/07/27 12:11:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -365,6 +365,7 @@ enum mode_key_cmd { MODEKEYCMD_COMPLETE, MODEKEYCMD_COPYSELECTION, MODEKEYCMD_DELETE, + MODEKEYCMD_DELETETOENDOFLINE, MODEKEYCMD_DOWN, MODEKEYCMD_ENDOFLINE, MODEKEYCMD_LEFT, |