aboutsummaryrefslogtreecommitdiffstats
path: root/Source/CMTextView.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-04-04 12:40:39 +0000
committerBibiko <bibiko@eva.mpg.de>2009-04-04 12:40:39 +0000
commit0abbaa9631c3720cdb2612b5c5ae6476ca3ddd99 (patch)
tree45f4e8b8a165ecea404feee60433ce064d8686c3 /Source/CMTextView.m
parente09651db8b277569f5da0f30c5f6e67feae97e4a (diff)
downloadsequelpro-0abbaa9631c3720cdb2612b5c5ae6476ca3ddd99.tar.gz
sequelpro-0abbaa9631c3720cdb2612b5c5ae6476ca3ddd99.tar.bz2
sequelpro-0abbaa9631c3720cdb2612b5c5ae6476ca3ddd99.zip
• FIXED upper case of e.g. 'order_' issue
- in addition fixed issue of typing 'order_' and then deleteBackward: event [ticket 281 comment 2] -- solved by looking at the end of SQL keyword token instead at begin of it => further discussion "undo behaviour"
Diffstat (limited to 'Source/CMTextView.m')
-rw-r--r--Source/CMTextView.m41
1 files changed, 23 insertions, 18 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m
index 91597c9d..07b334a0 100644
--- a/Source/CMTextView.m
+++ b/Source/CMTextView.m
@@ -1093,19 +1093,19 @@ SYNTAX HIGHLIGHTING!
switch (token) {
case SPT_SINGLE_QUOTED_TEXT:
case SPT_DOUBLE_QUOTED_TEXT:
- tokenColor = quoteColor;
- break;
+ tokenColor = quoteColor;
+ break;
case SPT_BACKTICK_QUOTED_TEXT:
- tokenColor = backtickColor;
- break;
+ tokenColor = backtickColor;
+ break;
case SPT_RESERVED_WORD:
- tokenColor = keywordColor;
- break;
+ tokenColor = keywordColor;
+ break;
case SPT_COMMENT:
- tokenColor = commentColor;
- break;
+ tokenColor = commentColor;
+ break;
default:
- tokenColor = nil;
+ tokenColor = nil;
}
if (!tokenColor) continue;
@@ -1117,15 +1117,20 @@ SYNTAX HIGHLIGHTING!
tokenRange = NSIntersectionRange(tokenRange, textRange);
if (!tokenRange.length) continue;
- // Is the current token is marked as SQL keyword, uppercase it if required.
- if (autouppercaseKeywordsEnabled &&
- [[self textStorage] attribute:kSQLkeyword atIndex:tokenRange.location effectiveRange:nil])
- {
- // Note: Register it for undo doesn't work ?=> unreliable single char undo
- // Replace it
- [self replaceCharactersInRange:tokenRange withString:[[[self string] substringWithRange:tokenRange] uppercaseString]];
- }
-
+ // If the current token is marked as SQL keyword, uppercase it if required.
+ unsigned long tokenEnd = tokenRange.location+tokenRange.length-1; // Check the end of the token
+ if (autouppercaseKeywordsEnabled
+ && [[self textStorage] attribute:kSQLkeyword atIndex:tokenEnd effectiveRange:nil])
+ // check if next char is not a kSQLkeyword; if so then upper case keyword
+ // @try catch() for catching valid index esp. after deleteBackward:
+ @try {
+ if(![[self textStorage] attribute:kSQLkeyword atIndex:tokenEnd+1 effectiveRange:nil])
+ // Register it for undo
+ // [self shouldChangeTextInRange:tokenRange replacementString:[[[self string] substringWithRange:tokenRange] uppercaseString]];
+ // NOTE: If one does this registering it ends up in single-character-undo
+ [self replaceCharactersInRange:tokenRange withString:[[[self string] substringWithRange:tokenRange] uppercaseString]];
+ } @catch(id ae) { }
+
[textStore addAttribute: NSForegroundColorAttributeName
value: tokenColor
range: tokenRange ];