diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-08-18 07:23:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-08-18 07:23:44 +0000 |
commit | bad94970bfb381c9d51d8f5188d6b2f59acac07b (patch) | |
tree | d1a2b9511983abe5fbd939a4ea19a44940eab3c2 /usr.bin/tmux/tmux.h | |
parent | 1cee65b0f7d3e704516348940da523cc3b61ff43 (diff) |
Add a "delete line" key when editing in the status line or the search up/down
prompt. C-u with emacs keys, d with vi.
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 c1bc9df1923..1dbb464bc90 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.83 2009/08/18 07:08:26 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.84 2009/08/18 07:23:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -369,6 +369,7 @@ enum mode_key_cmd { MODEKEYEDIT_CURSORLEFT, MODEKEYEDIT_CURSORRIGHT, MODEKEYEDIT_DELETE, + MODEKEYEDIT_DELETELINE, MODEKEYEDIT_DELETETOENDOFLINE, MODEKEYEDIT_ENDOFLINE, MODEKEYEDIT_ENTER, |