mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-14 16:35:47 +01:00
Fix :helpall {arg}.
This commit is contained in:
@@ -417,7 +417,7 @@ const Dactyl = Module("dactyl", {
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
findHelp: function (topic, unchunked) {
|
findHelp: function (topic, unchunked) {
|
||||||
if (topic in services.get("dactyl:").FILE_MAP)
|
if (!unchunked && topic in services.get("dactyl:").FILE_MAP)
|
||||||
return topic;
|
return topic;
|
||||||
unchunked = !!unchunked;
|
unchunked = !!unchunked;
|
||||||
let items = completion._runCompleter("help", topic, null, unchunked).items;
|
let items = completion._runCompleter("help", topic, null, unchunked).items;
|
||||||
|
|||||||
Reference in New Issue
Block a user