Skip to content

Commit ec8de16

Browse files
committed
Removed syntax highlighting
1 parent 00b6727 commit ec8de16

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Virtual_EDW/CustomTabPage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ private void GenerateFromTemplate()
684684
RaiseOnChangeMainText($"\r\nAssociated scripts have been saved in {FormBase.VdwConfigurationSettings.VdwOutputPath}.\r\n");
685685

686686
// Apply syntax highlighting.
687-
localRichTextBoxGenerationOutput.Rtf = TextHandling.SyntaxHighlightSql(localRichTextBoxGenerationOutput.Text).Rtf;
687+
//localRichTextBoxGenerationOutput.Rtf = TextHandling.SyntaxHighlightSql(localRichTextBoxGenerationOutput.Text).Rtf;
688688
}
689689

690690
/// <summary>

Virtual_EDW/TextHandling.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ internal static RichTextBox SyntaxHighlightSql(string inputText)
122122
"DECLARE",
123123
"ALTER",
124124
"COLUMN",
125+
"EXEC",
125126
"INTO", "OVER", "PARTITION", "IN", "ORDER", "BY", "GROUP", "AS", "WHERE", "NVARCHAR", "NOT EXISTS", "LEFT", "OUTER", "JOIN"};
126127
for (int i = 0; i < keyWordSql.Length; i++)
127128
{

0 commit comments

Comments
 (0)