PicoMite V6.00.02 release candidates - all versions


Author Message
matherp
Guru

Joined: 11/12/2012
Location: United Kingdom
Posts: 11168
Posted: 12:37pm 19 Apr 2025      

  Quote  With current entry model you cannot filter only "MATH C" without getting the whole list of MATH C_ADD, MATH C_SUB etc..


That is because of the way electricat has done the file nothing to do with the help command

  Quote  ~MATH C
MATH C
MATH C_ADD array1%(), array2%(), array3%()
MATH C_SUB array1%(), array2%(), array3%()
MATH C_MULT array1%(), array2%(), array3%()
MATH C_DIV array1%(), array2%(), array3%()
MATH C_ADD array1!(), array2!(), array3!()
MATH C_SUB array1!(), array2!(), array3!()
MATH C_MULT array1!(), array2!(), array3!()
MATH C_DIV array1!(), array2!(), array3!()


There is also a mistake in Electricat's file. The search string should not include the parameters - just the command

  Quote   Since the work after help is always a string, auto insert the leading quote (the trailing quote is not needed for the command to perform).


Not trivial because the wildcards are tokens * and ? but will look

  Quote  Since you don't want to type the whole search line (does not work, see 1-), the trailing character will always be a "*" wildcard. Auto insert that.


No: this is wrong. Will bring in lots of potentially unwanted output
This relates to the mistake in the file

  Quote  ~LONGSTRING CLEAR array%()
LONGSTRING CLEAR array%()


should be

  Quote  ~LONGSTRING CLEAR
LONGSTRING CLEAR array%()