diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-01-21 10:15:31 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-01-21 10:15:31 +0000 |
commit | bc01bc7bcfe8b332ffa638c0f89adb8f2e5f748a (patch) | |
tree | 31d2fa5a23313578b7bcd5bde47591c4fc0d01de /Source/SPNarrowDownCompletion.h | |
parent | ce340132e43b5f0d90286704d1232f77f6ffbc8a (diff) | |
download | sequelpro-bc01bc7bcfe8b332ffa638c0f89adb8f2e5f748a.tar.gz sequelpro-bc01bc7bcfe8b332ffa638c0f89adb8f2e5f748a.tar.bz2 sequelpro-bc01bc7bcfe8b332ffa638c0f89adb8f2e5f748a.zip |
• completion
- CTRL+ESC invokes the fuzzy search completion; eg:
i_s.pcss. will show all fields from `information_schema`.`PROCESSLIST`. if no other matches are found; the search is a regexp ".*?i.*?_.*?s.*?\. …" etc. by using RegexKitLite which is much more faster than NSPredicate and can handle long regexps
- improved type display: if a type definition contains a , split it to avoid splitting of the tokenFields
- while insertion of an item and holding down the CTRL key the list keeps open to allow to insert more suggestions separated by ", " from the current list (very useful if one wants to insert only selected fields from a table)
Diffstat (limited to 'Source/SPNarrowDownCompletion.h')
-rw-r--r-- | Source/SPNarrowDownCompletion.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPNarrowDownCompletion.h b/Source/SPNarrowDownCompletion.h index f8f12a83..1927b671 100644 --- a/Source/SPNarrowDownCompletion.h +++ b/Source/SPNarrowDownCompletion.h @@ -47,6 +47,7 @@ BOOL fuzzyMode; BOOL noFilterString; BOOL cursorMovedLeft; + BOOL commaInsertionMode; NSInteger backtickMode; NSFont *tableFont; NSRange theCharRange; |