diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-28 23:11:18 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-28 23:11:18 +0000 |
commit | de7483a1141428a8331113fc7277d3bf67d51a13 (patch) | |
tree | 0ec364a0cb114e23b18a97b2694f35d40f980f55 /status.c | |
parent | d9dcc5ed44a5cc9f0129af3d2f444c043bcf1ab7 (diff) | |
download | rtmux-de7483a1141428a8331113fc7277d3bf67d51a13.tar.gz rtmux-de7483a1141428a8331113fc7277d3bf67d51a13.tar.bz2 rtmux-de7483a1141428a8331113fc7277d3bf67d51a13.zip |
Sync OpenBSD patchset 192:
Next step towards customisable mode keys: build each default table of keys
into a named tree on start and use that for lookups. Also add command to string
translation tables and modify list-keys to show the mode key bindings (new
-t argument).
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.105 2009-07-28 22:55:59 tcunha Exp $ */ +/* $Id: status.c,v 1.106 2009-07-28 23:11:18 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -609,9 +609,9 @@ status_prompt_set(struct client *c, const char *msg, keys = options_get_number(&c->session->options, "status-keys"); if (keys == MODEKEY_EMACS) - mode_key_init(&c->prompt_mdata, mode_key_emacs_edit); + mode_key_init(&c->prompt_mdata, &mode_key_tree_emacs_edit); else - mode_key_init(&c->prompt_mdata, mode_key_vi_edit); + mode_key_init(&c->prompt_mdata, &mode_key_tree_vi_edit); c->tty.flags |= (TTY_NOCURSOR|TTY_FREEZE); c->flags |= CLIENT_STATUS; |