From 0db987da600f261bb5f887698bf1dac6552084ab Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Sun, 4 Dec 2022 11:03:51 +0000 Subject: [PATCH] Minor tweaks for #7073 --- core/language/en-GB/Help/commands.tid | 10 +++-- core/modules/commands/commands.js | 53 +++++++++++++-------------- 2 files changed, 33 insertions(+), 30 deletions(-) diff --git a/core/language/en-GB/Help/commands.tid b/core/language/en-GB/Help/commands.tid index 1f2c01ffc..454159b44 100644 --- a/core/language/en-GB/Help/commands.tid +++ b/core/language/en-GB/Help/commands.tid @@ -1,7 +1,7 @@ title: $:/language/Help/commands description: Run commands returned from a filter -It runs sequentially the commands returned from the filter. +Sequentially run the command tokens returned from a filter ``` --commands @@ -9,6 +9,10 @@ It runs sequentially the commands returned from the filter. Examples -`--commands "[enlist{$:/build-commands-as-text}]"` +``` +--commands "[enlist{$:/build-commands-as-text}]" +``` -`--commands "[{$:/build-commands-as-json}jsonindexes[]] :map[{$:/build-commands-as-json}jsonget]"` +``` +--commands "[{$:/build-commands-as-json}jsonindexes[]] :map[{$:/build-commands-as-json}jsonget]" +``` diff --git a/core/modules/commands/commands.js b/core/modules/commands/commands.js index 2842454f8..813f19064 100644 --- a/core/modules/commands/commands.js +++ b/core/modules/commands/commands.js @@ -3,41 +3,40 @@ title: $:/core/modules/commands/commands.js type: application/javascript module-type: command -Runs sequentially the commands returned from the filter. +Runs the commands returned from a filter \*/ (function() { - /*jslint node: true, browser: true */ - /*global $tw: false */ - "use strict"; +/*jslint node: true, browser: true */ +/*global $tw: false */ +"use strict"; - exports.info = { - name: "commands", - synchronous: true - }; +exports.info = { + name: "commands", + synchronous: true +}; - var Command = function(params, commander) { - this.params = params; - this.commander = commander; - }; +var Command = function(params, commander) { + this.params = params; + this.commander = commander; +}; - Command.prototype.execute = function() { - // Parse the filter - var filter = this.params[0]; - if(!filter) { - return "No filter specified"; - } - var commands = this.commander.wiki.filterTiddlers(filter) - if(commands.length === 0) { - return "No tiddlers found for filter '" + filter + "'"; - } +Command.prototype.execute = function() { + // Parse the filter + var filter = this.params[0]; + if(!filter) { + return "No filter specified"; + } + var commands = this.commander.wiki.filterTiddlers(filter) + if(commands.length === 0) { + return "No tiddlers found for filter '" + filter + "'"; + } + this.commander.addCommandTokens(commands); + return null; +}; - this.commander.addCommandTokens(commands); - return null; - }; - - exports.Command = Command; +exports.Command = Command; })();