From 8e0354853205e95809a67daf3ec2aabeb5dc4525 Mon Sep 17 00:00:00 2001 From: cxl Date: Fri, 13 Sep 2013 13:14:12 +0000 Subject: [PATCH] ide: now using sql syntax highligting for .ddl too git-svn-id: svn://ultimatepp.org/upp/trunk@6332 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/idefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/ide/idefile.cpp b/uppsrc/ide/idefile.cpp index d916a97bd..ad0c92ec9 100644 --- a/uppsrc/ide/idefile.cpp +++ b/uppsrc/ide/idefile.cpp @@ -41,7 +41,7 @@ void Ide::SetupEditor(int f, String hl, String fn) if(hl == "sch") editor.Highlight(CodeEditor::HIGHLIGHT_SCH); else - if(hl == "sql") + if(hl == "sql" || hl == "ddl") editor.Highlight(CodeEditor::HIGHLIGHT_SQL); else editor.Highlight(CodeEditor::HIGHLIGHT_NONE);