diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-10 22:28:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-10 22:28:40 +0000 |
commit | ee0a7cda880f01771470b2902839c5d6396057c3 (patch) | |
tree | 356e4a9bd6b3e2c48c9d204d876a20ec7477b2bc /tmux.h | |
parent | 736117e4e97a1a060777e8469c8091553a09a807 (diff) | |
download | rtmux-ee0a7cda880f01771470b2902839c5d6396057c3.tar.gz rtmux-ee0a7cda880f01771470b2902839c5d6396057c3.tar.bz2 rtmux-ee0a7cda880f01771470b2902839c5d6396057c3.zip |
Restore emulation of ich with insert mode.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.219 2009-01-10 19:37:35 nicm Exp $ */ +/* $Id: tmux.h,v 1.220 2009-01-10 22:28:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -289,12 +289,14 @@ enum tty_code_code { TTYC_RI, /* scroll_reverse, sr */ TTYC_RMACS, /* exit_alt_charset_mode */ TTYC_RMCUP, /* exit_ca_mode, te */ + TTYC_RMIR, /* exit_insert_mode, ei */ TTYC_RMKX, /* keypad_local, ke */ TTYC_SETAB, /* set_a_background, AB */ TTYC_SETAF, /* set_a_foreground, AF */ TTYC_SGR0, /* exit_attribute_mode, me */ TTYC_SMACS, /* enter_alt_charset_mode, as */ TTYC_SMCUP, /* enter_ca_mode, ti */ + TTYC_SMIR, /* enter_insert_mode, im */ TTYC_SMKX, /* keypad_xmit, ks */ TTYC_SMSO, /* enter_standout_mode, so */ TTYC_SMUL, /* enter_underline_mode, us */ |