diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-05-07 08:29:42 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-05-07 08:29:42 +0000 |
commit | 166b844e7a4e84b79d2cfad5cac1d5d8333988f5 (patch) | |
tree | 21b9eb5bd92f22e4114688c0aaaf11d231a1efb4 /Resources | |
parent | 2a4bbd2e425fbbf0ffd20a9c36921778b92963ae (diff) | |
download | sequelpro-166b844e7a4e84b79d2cfad5cac1d5d8333988f5.tar.gz sequelpro-166b844e7a4e84b79d2cfad5cac1d5d8333988f5.tar.bz2 sequelpro-166b844e7a4e84b79d2cfad5cac1d5d8333988f5.zip |
• added "Query Editor" preference pane for setting colors, font, and modes (from the CQ's action gear which are still customizable there)
- in addition to the syntax colors it's now possible to change the fore/background color as well
• added "Update Help while typing" feature in the Custom Query editor
• first trial to improve syntax highlighting for large text in the Custom Query editor
- if the text is larger than 10k the highlighting is performed only for the visible text area ±bias (3.5k)
- if the user changes the visible area the highlighting follows time-delayed 500ms) to assure user interaction
- a test with a 45MB SQL dump worked (of course a tick slowier)
-- todo: improve prev/current query detection (mainly the SQLParser)
- if the text size is > 6MB the completion list won't show words from the text due to parsing time
- if the text size is > 6MB the line numbering will be disabled due to performance issue (improvements should follow)
• some tiny clarification changes in the syntax highlighting code
• some minor code cosmetics
Diffstat (limited to 'Resources')
-rw-r--r-- | Resources/PreferenceDefaults.plist | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Resources/PreferenceDefaults.plist b/Resources/PreferenceDefaults.plist index bc41f299..6e2431b4 100644 --- a/Resources/PreferenceDefaults.plist +++ b/Resources/PreferenceDefaults.plist @@ -36,6 +36,22 @@ <integer>60</integer> <key>CustomQueryEditorFont</key> <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAZOU0ZvbnQehIQITlNPYmplY3QAhYQBaRiEBVsyNGNdBgAAAA4AAAD//k0AbwBuAGEAYwBvAAAAhAFmCoQBYwCYAZgAmACG</data> + <key>CustomQueryEditorBackgroundColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmAQEBAYY=</data> + <key>CustomQueryEditorBacktickColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmAACDqagoPwGG</data> + <key>CustomQueryEditorCommentColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmAIPp6Og+AAGG</data> + <key>CustomQueryEditorNumericColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmg4GAAD+Dh4aGPgABhg==</data> + <key>CustomQueryEditorQuoteColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmg8bFRT+DnXPOPYNba609AYY=</data> + <key>CustomQueryEditorSQLKeywordColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmg83MTD6DnXPOPQEBhg==</data> + <key>CustomQueryEditorTextColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmAAAAAYY=</data> + <key>CustomQueryEditorVariableColor</key> + <data>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMBhARmZmZmg3zv/T6DfO/9PoN87/0+AYY=</data> <key>CustomQueryAutoindent</key> <true/> <key>CustomQueryAutopair</key> @@ -44,6 +60,8 @@ <false/> <key>CustomQueryAutohelp</key> <false/> + <key>CustomQueryAutohelpDelay</key> + <real>1.0</real> <key>SelectLastFavoriteUsed</key> <true/> <key>LastFavoriteIndex</key> |