diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-01-09 23:08:45 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-01-09 23:08:45 +0000 |
commit | a252c9efe5f22cbdc8dd8343c7e2a6c631add785 (patch) | |
tree | dec5256358d8fde27f940937f2c0680453bd51dc /Source/SPNarrowDownCompletion.m | |
parent | cfd4efa37b38e213f71301355ac7b583d88d1b9e (diff) | |
download | sequelpro-a252c9efe5f22cbdc8dd8343c7e2a6c631add785.tar.gz sequelpro-a252c9efe5f22cbdc8dd8343c7e2a6c631add785.tar.bz2 sequelpro-a252c9efe5f22cbdc8dd8343c7e2a6c631add785.zip |
• F5 completion
- fixed forgotten range checking to suppress Console warning
- `|` [ | := caret ] shows all field names - up to now only those from the current table - table/db/proc/func names
Diffstat (limited to 'Source/SPNarrowDownCompletion.m')
-rw-r--r-- | Source/SPNarrowDownCompletion.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPNarrowDownCompletion.m b/Source/SPNarrowDownCompletion.m index 275142ca..a4daefa0 100644 --- a/Source/SPNarrowDownCompletion.m +++ b/Source/SPNarrowDownCompletion.m @@ -129,7 +129,7 @@ if(self = [self init]) { - if(aUserString) + if(aUserString && ![aUserString isEqualToString:@"`"]) [mutablePrefix appendString:aUserString]; if(aStaticPrefix) |