aboutsummaryrefslogtreecommitdiffstats
path: root/feedSomeKeys_3.js
diff options
context:
space:
mode:
Diffstat (limited to 'feedSomeKeys_3.js')
-rw-r--r--feedSomeKeys_3.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/feedSomeKeys_3.js b/feedSomeKeys_3.js
index fd08ec6..29357db 100644
--- a/feedSomeKeys_3.js
+++ b/feedSomeKeys_3.js
@@ -34,7 +34,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
// INFO {{{
let INFO =
-xml`<plugin name="feedSomeKeys" version="1.9.3"
+xml`<plugin name="feedSomeKeys" version="1.9.4"
href="http://github.com/vimpr/vimperator-plugins/blob/master/feedSomeKeys_3.js"
summary="Feed some defined key events into the Web content"
lang="en-US"
@@ -450,11 +450,11 @@ xml`<plugin name="feedSomeKeys" version="1.9.3"
urls = RegExp(urls);
// FIXME 同じオブジェクトがダブって返るかも(あるいはそれで良い?)
- let result = [];
+ let maps = [];
for (let [, m] in Iterator(targetModes || [modes.NORMAL]))
- result = result.concat(mappings._user[m].filter(match));
+ maps = maps.concat(mappings._user[m].filter(match));
- return result;
+ return maps;
}
function unmap (condition) {