aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--copy.js3
-rw-r--r--feedSomeKeys.js2
-rw-r--r--lookupDictionary.js1
3 files changed, 5 insertions, 1 deletions
diff --git a/copy.js b/copy.js
index dc4e048..e724efc 100644
--- a/copy.js
+++ b/copy.js
@@ -97,7 +97,8 @@ liberator.commands.addUserCommand(['copy'],'Copy to clipboard',
}
});
return [0, candidates];
- }
+ },
+ bang: true
}
);
diff --git a/feedSomeKeys.js b/feedSomeKeys.js
index d582148..9543a49 100644
--- a/feedSomeKeys.js
+++ b/feedSomeKeys.js
@@ -304,6 +304,8 @@ commands.addUserCommand(['feedmap','fmap'],'Feed Map a key sequence',
} else {
replaceUserMap(lhs,rhs,bang);
}
+ },{
+ bang: true
}
);
commands.addUserCommand(['feedmapclear','fmapc'],'Clear Feed Maps',destroy);
diff --git a/lookupDictionary.js b/lookupDictionary.js
index 918bd41..ebe69e2 100644
--- a/lookupDictionary.js
+++ b/lookupDictionary.js
@@ -184,6 +184,7 @@ SITE_DEFINITION.forEach(function(dictionary){
}
return [0, candidates];
},
+ bang: true
}
);
});