If a form input element was focused via hinting, the message to the user
-- INPUT -- was removed from input box. Now we don't clear the input box if
the element is focused by hinting to keep the user informed about the current
mode.
vp_set_mode(c, VP_MODE_NORMAL, TRUE);
} else if (!strncmp(value, "INSERT:", 7)) {
hints_observe_input(c, FALSE);
- vp_set_mode(c, VP_MODE_INSERT, TRUE);
+ vp_set_mode(c, VP_MODE_INSERT, FALSE);
} else if (!strncmp(value, "DATA:", 5)) {
hints_observe_input(c, FALSE);
Arg a = {0};