From 166b844e7a4e84b79d2cfad5cac1d5d8333988f5 Mon Sep 17 00:00:00 2001 From: Bibiko Date: Thu, 7 May 2009 08:29:42 +0000 Subject: =?UTF-8?q?=E2=80=A2=20added=20"Query=20Editor"=20preference=20pan?= =?UTF-8?q?e=20for=20setting=20colors,=20font,=20and=20modes=20(from=20the?= =?UTF-8?q?=20CQ's=20action=20gear=20which=20are=20still=20customizable=20?= =?UTF-8?q?there)=20-=20in=20addition=20to=20the=20syntax=20colors=20it's?= =?UTF-8?q?=20now=20possible=20to=20change=20the=20fore/background=20color?= =?UTF-8?q?=20as=20well=20=E2=80=A2=20added=20"Update=20Help=20while=20typ?= =?UTF-8?q?ing"=20feature=20in=20the=20Custom=20Query=20editor=20=E2=80=A2?= =?UTF-8?q?=20first=20trial=20to=20improve=20syntax=20highlighting=20for?= =?UTF-8?q?=20large=20text=20in=20the=20Custom=20Query=20editor=20-=20if?= =?UTF-8?q?=20the=20text=20is=20larger=20than=2010k=20the=20highlighting?= =?UTF-8?q?=20is=20performed=20only=20for=20the=20visible=20text=20area=20?= =?UTF-8?q?=C2=B1bias=20(3.5k)=20-=20if=20the=20user=20changes=20the=20vis?= =?UTF-8?q?ible=20area=20the=20highlighting=20follows=20time-delayed=20500?= =?UTF-8?q?ms)=20to=20assure=20user=20interaction=20-=20a=20test=20with=20?= =?UTF-8?q?a=2045MB=20SQL=20dump=20worked=20(of=20course=20a=20tick=20slow?= =?UTF-8?q?ier)=20--=20todo:=20improve=20prev/current=20query=20detection?= =?UTF-8?q?=20(mainly=20the=20SQLParser)=20-=20if=20the=20text=20size=20is?= =?UTF-8?q?=20>=206MB=20the=20completion=20list=20won't=20show=20words=20f?= =?UTF-8?q?rom=20the=20text=20due=20to=20parsing=20time=20-=20if=20the=20t?= =?UTF-8?q?ext=20size=20is=20>=206MB=20the=20line=20numbering=20will=20be?= =?UTF-8?q?=20disabled=20due=20to=20performance=20issue=20(improvements=20?= =?UTF-8?q?should=20follow)=20=E2=80=A2=20some=20tiny=20clarification=20ch?= =?UTF-8?q?anges=20in=20the=20syntax=20highlighting=20code=20=E2=80=A2=20s?= =?UTF-8?q?ome=20minor=20code=20cosmetics?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/SPEditorTokens.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Source/SPEditorTokens.h') diff --git a/Source/SPEditorTokens.h b/Source/SPEditorTokens.h index 65aba747..efa7167c 100644 --- a/Source/SPEditorTokens.h +++ b/Source/SPEditorTokens.h @@ -13,7 +13,7 @@ #define SPT_BACKTICK_QUOTED_TEXT 4 #define SPT_RESERVED_WORD 5 #define SPT_WHITESPACE 6 -#define SPT_WORD 7 -#define SPT_OTHER 8 -#define SPT_NUMERIC 9 -#define SPT_VARIABLE 10 +#define SPT_NUMERIC 7 +#define SPT_VARIABLE 8 +#define SPT_WORD 9 +#define SPT_OTHER 10 -- cgit v1.2.3