TSE Pro v4.50 release candidate 1 has been uploaded:
https://semware.com/files/tse-pro-install/tse-setup-4.50rc1.zip
Changes include:
---------------------------------------------------------------------------------
May 24 2023 v4.50 release candidate 1
---------------------------------------------------------------------------------
New regular expression meta-commands:
\d - shortcut for: [0-9]
\D - shortcut for: [~0-9]
\s - shortcut for: [ \f\r\n\t]
\S - shortcut for: [~ \f\r\n\t]
\w - shortcut for: [a-zA-z0-9_]
\W - shortcut for: [~a-zA-z0-9_]
(The
read.me mistakenly has "^" above instead of "~" - thanks to
Carlo Hogeveen for his eagle eyes!)
These sequences are not recognized inside a class, e.g.: []. If there
is a need for this, let me know and I'll see about adding that.
There is a conflict between \d and \dnnn
The original usage of \d is used when \dnnn is found, otherwise, \d,
\dn, \dnn will invoke the new usage.
------
Incremental search also in mac\syncfg.s > Configure Associations.
Thanks to Knud van Eeden for the suggestion and code.
Updated expr.s from Eckhard Hillmann, including:
-Reworked the code
-Added >>, shr, <<, shl, mod, div, not, pow
-Added copy to Winclip
-Added Hex input using prefix $ ($ff) Motorola style
-Changed error-handling, don't terminate and close
the macro on error, show message
-Updated help
-Added keywords comp, xor, and, or
-Insert Formatted Decimal result
-Updated help
Updated html.syn file from Carlo Hogeveen.
Updated where.s and f.s to use SqueezePath(fn, _USE_HOME_PATH_)
Only show "Load All Files" choice when the list of files is created via grep.
Thanks to Fred H. Olson for the report.
Size taken for syntax highlighting was not taken into account in the display of
used memory. Fixed.
--
Sammy Mitchell