aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/plugins
diff options
context:
space:
mode:
authorGravatar keis <keijser@gmail.com>2010-11-30 19:25:34 +0100
committerGravatar keis <keijser@gmail.com>2010-11-30 19:25:34 +0100
commit7cf3fb88d1e094da5b516699a61d5e589c039e8f (patch)
tree53934ff1eb2a07b643e6d8173fc102b4629b88e0 /examples/data/plugins
parent14bce08a78c86e8cca7a6ca4b64d3692fa2782b5 (diff)
disable odd clear of keycmd
was breaking history of prompts, for what I can tell no good reason
Diffstat (limited to 'examples/data/plugins')
-rw-r--r--examples/data/plugins/bind.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/data/plugins/bind.py b/examples/data/plugins/bind.py
index 5b13476..bf693b3 100644
--- a/examples/data/plugins/bind.py
+++ b/examples/data/plugins/bind.py
@@ -421,7 +421,8 @@ def match_and_exec(uzbl, bind, depth, keylet, bindlet):
if not has_args or on_exec:
del uzbl.config['mode']
bindlet.reset()
- uzbl.clear_current()
+ # cleared by keycmd_exec_current, why is this here? breaks history
+ #uzbl.clear_current()
return True