ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > FARR Plugins and Aliases

FARR plugin: Bakko

<< < (2/3) > >>

ewemoa:
Right.  Thanks mouser for adding this hotkey!  Very helpful :)

mouser:
ewe, how about this: https://www.donationcoder.com/forum/index.php?topic=14496.new#new

ewemoa:
IIUC, what is suggested is to take something like:

FindAndRunRobot.exe

--- End quote ---

and change it into:

FindAndRunRobot.exe +sall

--- End quote ---

Does that sound about right and if so is there any difference whether +sall is prepended or appended?

I guess the other ones listed under "Special Search Modifier Keywords" could be done too...

mouser:
exactly right; wont make a dif but putting it at end makes more sense to me.

ewemoa:
Here's a proof-of-concept implementation (showall.js) -- no icon and some problems exist, but FWIW:


--- Code: Javascript ---/*global params, pu */ // jslint be quiet(function () {  var name;  // NOTE: no spaces in name  name = "ShowALLResults";  function caption(stxt) {    return "Show All Results";  }  function hint(stxt) {    return ""; // XXX  }  function icon(stxt) {    return pu.pidir + "\\icons\\showall.ico";  }  function launch(stxt) {    return "farr://pcommand " +            aliasstr + " " +           "xform " +            name + " " + // NOTE: no spaces in name           stxt;  }  function display(stxt) {    var m;    // XXX: need a better regexp?    m = /\+sall/.exec(stxt);    if (m !== null) {      return false;    } else {      return true;    }  }  function code(argtxt) {    return argtxt + " +sall";  }  return {name: name,          caption: caption,          hint: hint,          icon: icon,          launch: launch,          display: display,          code: code};} ());

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version