AutoReplace enhancements

JureM

Member
I really like the new autoreplace feature that is invoked for symbol characters. I believe there is an issue in situations when 2 replacements are defined which differ only in last symol character. I use these two a lot:

Code:
sc=select
sc*=select count(*)

Both replacements works in v15, however "sc*" doesn't work in v16 beta. Instead of producing "select count(*)" it produces "select*".
 
This is now indeed ambiguous. Becuase the * symbol now triggers the AutoReplace operation, it replaces "sc" with "select" and adds the * symbol.
 
Exactly. Perhaps the auto replace can check, before making the replacement, if symbol character is also part of a replacement.
 
Back
Top