aboutsummaryrefslogtreecommitdiffstats
path: root/feedSomeKeys.js
diff options
context:
space:
mode:
Diffstat (limited to 'feedSomeKeys.js')
-rw-r--r--feedSomeKeys.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/feedSomeKeys.js b/feedSomeKeys.js
index 9543a49..ba4419a 100644
--- a/feedSomeKeys.js
+++ b/feedSomeKeys.js
@@ -174,13 +174,13 @@ function replaceUserMap(origKey, feedKey, useVkey){
origMaps.push(clone);
}
}
- var map = new (liberator.Map)([modes.NORMAL], [origKey], origKey + ' -> ' + feedKey,
+ var map = new Map([modes.NORMAL], [origKey], origKey + ' -> ' + feedKey,
function(count){
count = count > 1 ? count : 1;
for (var i=0; i<count; i++){
feedKeyIntoContent(feedKey, useVkey);
}
- }, { flags:liberator.Mappings.flags.COUNT, rhs:feedKey, noremap:true });
+ }, { flags:Mappings.flags.COUNT, rhs:feedKey, noremap:true });
addUserMap(map);
if (feedMaps.some(function(fmap){
if (fmap.names[0] != origKey) return false;