1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 01:07:58 +01:00

Blur focused element on return to NORMAL mode.

This commit is contained in:
Kris Maglione
2008-12-21 17:36:55 -05:00
parent 1a78e1c0a9
commit d7b20e26f5
2 changed files with 3 additions and 2 deletions

View File

@@ -923,7 +923,8 @@ function Commands() //{{{
[["-bang"], commandManager.OPTION_NOARG],
[["-count"], commandManager.OPTION_NOARG],
[["-complete"], commandManager.OPTION_STRING,
function (arg) arg in completeOptionMap || /custom,\w+/.test(arg)]
function (arg) arg in completeOptionMap || /custom,\w+/.test(arg),
function (context) [[k, ''] for ([k, v] in Iterator(completeOptionMap))]]
],
literal: 1,
serial: function () [

View File

@@ -118,7 +118,7 @@ const modes = (function () //{{{
options.setPref("accessibility.browsewithcaret", false);
statusline.updateUrl();
liberator.focusContent(false);
liberator.focusContent(true);
}
}