diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-16 14:29:50 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-16 14:29:50 +0000 |
commit | 6d533e3c3989d59274e1d9dfff99f7f6b59bbef3 (patch) | |
tree | f439e65d3e6dfafb92347590adbcec4bc97b70ae /Source/SPNarrowDownCompletion.m | |
parent | 392c1e5c5579b1b58e02acddf2880097d9e1e0ce (diff) | |
download | sequelpro-6d533e3c3989d59274e1d9dfff99f7f6b59bbef3.tar.gz sequelpro-6d533e3c3989d59274e1d9dfff99f7f6b59bbef3.tar.bz2 sequelpro-6d533e3c3989d59274e1d9dfff99f7f6b59bbef3.zip |
• Query Favorites
- added support for mirrored snippets $x x:= to be mirrored snippet index
- example:
SELECT $1.${2:} FROM ${1:¦$SP_ASLIST_ALL_TABLES¦} WHERE $1.${3:} = ${4:value} AND $1.$2 =
• CMTextView
- fixed completion issue for fuzzy search
- added {} chars as auto-pair for connivence
Diffstat (limited to 'Source/SPNarrowDownCompletion.m')
-rw-r--r-- | Source/SPNarrowDownCompletion.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/SPNarrowDownCompletion.m b/Source/SPNarrowDownCompletion.m index 5f01d128..ac29fc08 100644 --- a/Source/SPNarrowDownCompletion.m +++ b/Source/SPNarrowDownCompletion.m @@ -830,4 +830,10 @@ } } +- (void)adjustWorkingRangeByDelta:(NSInteger)delta +{ + theCharRange.location += delta; + theParseRange.location += delta; +} + @end |