FS#273 - Following textbox does not change to insert mode
Attached to Project:
Uzbl
Opened by Dennis Hodapp (thehodapp) - 2011-06-12 01:09:49 AM
Last edited by Brendan Taylor (bct) - 2012-11-21 02:59:46 AM
Opened by Dennis Hodapp (thehodapp) - 2011-06-12 01:09:49 AM
Last edited by Brendan Taylor (bct) - 2012-11-21 02:59:46 AM
|
DetailsI would expect after following a text box with fl for it to focus and change to insert mode. Right now it focuses but does not change to insert mode.
The version of Uzbl I'm using was pulled from uzbl-experimental-git on 6.9.2011. |
This task depends upon
echo "@set_mode insert" > $UZBL_FIFO
to fix this issue. The whole scripts reads as
========================================================
#!/bin/sh
case "$( echo "script @scripts_dir/go_input.js" | socat - "unix-connect:$UZBL_SOCKET" )" in
*XXXFORM_ACTIVEXXX*)
echo 'event KEYCMD_CLEAR' > "$UZBL_FIFO"
echo "@set_mode insert" > $UZBL_FIFO
;;
esac
================================================================