1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-01 09:22:26 +01:00

Fix :helpall {arg}.

This commit is contained in:
Doug Kearns
2010-10-02 21:03:30 +10:00
parent 2c1555b651
commit c0a5a680b8

View File

@@ -417,7 +417,7 @@ const Dactyl = Module("dactyl", {
* @returns {string}
*/
findHelp: function (topic, unchunked) {
if (topic in services.get("dactyl:").FILE_MAP)
if (!unchunked && topic in services.get("dactyl:").FILE_MAP)
return topic;
unchunked = !!unchunked;
let items = completion._runCompleter("help", topic, null, unchunked).items;