I have had my syntax highlighting configuration working for years and recently this feature isn't working as it used to. I prefix my input arguments with i_ and constants with c_ for SQL stored procedures. Both are immutable once set in the procedure so I make them the same color. Recently, since upgrading to 2022.1.0.90 64-bit, only the prefix is highlighted not the entire prefix+word. It's like the syntax highlighting does not recognize the _ as part of the word.
I have in the syntax highlighting wordfile:
I have the following code in an SQL file:
Only i_ are being highlighted, not i_SelectDatabase, etc. I didn't change anything, I just upgraded UltraEdit.
Thanks, Paul
I have in the syntax highlighting wordfile:
Code: Select all
/C3"Constants" Colors = 128 Colors Back = 16777215 Colors Auto Back = 1 Font Style = 1
** c_ i_
Code: Select all
replace procedure DB_Nme.ColumnMatch
(
in i_SelectDatabaseName varchar(128)
,in i_SelectObjectName varchar(128)
,in i_ReferenceDatabaseName varchar(128)
,in i_ReferenceObjectName varchar(128)
,out o_SQLCode integer
,out o_SQLState char(5)
,out o_RtnCode byteint
,out o_RtnMsg varchar(255)
)
Thanks, Paul