aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Tom Adams <tom@holizz.com>2009-08-23 21:47:37 +0100
committerGravatar Tom Adams <tom@holizz.com>2009-08-26 09:44:42 +0100
commit36859a3a174387421dd4397f5f14a3f62b0deeed (patch)
tree8b50486cabf36cc31c58ce13202470f0634009ed /examples
parent0e7eed2678b3246514bfb92bdca3c52bf4599ebb (diff)
Don't reset keycmd in load_start_cb.
To emulate the old functionality, include 'set keycmd = ' in your load_start_handler. Fixes: FS#86 - Command resets on load finish
Diffstat (limited to 'examples')
-rw-r--r--examples/config/uzbl/config2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/config/uzbl/config b/examples/config/uzbl/config
index 86f4268..890a0b9 100644
--- a/examples/config/uzbl/config
+++ b/examples/config/uzbl/config
@@ -8,7 +8,7 @@ set download_handler = spawn $XDG_DATA_HOME/uzbl/scripts/download.sh
set cookie_handler = spawn $XDG_DATA_HOME/uzbl/scripts/cookies.py
#set new_window = sh 'echo uri "$8" > $4' # open in same window
set new_window = sh 'uzbl -u $8' # equivalent to the default behaviour
-set load_start_handler = set status_message = <span foreground="khaki">wait</span>
+set load_start_handler = chain 'set keycmd = ' 'set status_message = <span foreground="khaki">wait</span>'
set load_commit_handler = set status_message = <span foreground="green">recv</span>
set load_finish_handler = chain 'set status_message = <span foreground="gold">done</span>' 'spawn $XDG_DATA_HOME/uzbl/scripts/history.sh'