aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorStephen Blott2016-02-28 06:48:03 +0000
committerStephen Blott2016-03-05 05:38:30 +0000
commitf89b58f04af3eae05de9e999c39b2fe047fe6f4a (patch)
tree6a544ed83a8452507b1a929a48026d14294c6c84 /lib
parent18b8db13fa5184e0cc3ac5fd6645620fdb9d5cef (diff)
downloadvimium-f89b58f04af3eae05de9e999c39b2fe047fe6f4a.tar.bz2
Key bindings; more tweaks and fixes.
Miscellaneous fixes and tweaks, including: - Reinstate key logging. - Fix count handling in line with expected behaviour in #2024. - Remove `noCount` option; we don't need it. - Simplify logic in various places. Fixes #2024.
Diffstat (limited to 'lib')
-rw-r--r--lib/handler_stack.coffee2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/handler_stack.coffee b/lib/handler_stack.coffee
index bb0f19a6..2a44d26b 100644
--- a/lib/handler_stack.coffee
+++ b/lib/handler_stack.coffee
@@ -84,8 +84,6 @@ class HandlerStack
# Debugging.
logResult: (eventNumber, type, event, handler, result) ->
- # Key queue events aren't usually useful for debugging, so we filter them out.
- return if type in [ "registerKeyQueue" ]
label =
switch result
when @stopBubblingAndTrue then "stop/true"