aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleCommandTextView.m
Commit message (Collapse)AuthorAgeFilesLines
* - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵rowanbeentje2013-05-211-3/+3
| | | | enable some more
* Fix more warnings.stuconnolly2013-02-171-21/+28
|
* Fix more warnings.stuconnolly2013-01-251-3/+3
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-12/+21
|
* - Add Command-0 as the shortcut to restore the default font size in the ↵rowanbeentje2011-04-111-2/+8
| | | | HTML output window and bundle and field editors, adding commands for the equivalent functionality. This standardises text views with the custom query view and other applications
* - Fix more compiler warningsrowanbeentje2011-03-041-13/+14
|
* • trial to fix boundsDidChangeNotification for logs 1894, 1900, 1901Bibiko2011-01-061-2/+2
|
* • some minor code cleaningBibiko2011-01-051-4/+4
|
* • enabled Bundle main menuBibiko2011-01-051-0/+10
| | | | • improved rendering of line number display in Query Editor and Bundle command text view after scrolling to avoid displaying them unreadable
* • fixed GUI problem for line numbering in Query EditorBibiko2010-12-141-12/+8
| | | | | | • improved Bundle command script editor • sped up a bit the NoodleLineNumbering by pre-calculation of constants used in a loop • fixed issue to detect the scope Query Editor better and safer for Bundle commands
* • Bundel EditorBibiko2010-12-081-22/+26
| | | | | - improved undo behaviour - fix issue for non-US keyboard layouts
* • Bundle Editor: fix and improvements for wrapping selection into matching ↵Bibiko2010-12-081-0/+10
| | | | chars
* • Bundle EditorBibiko2010-12-081-1/+56
| | | | | - added completion support for shell variables via ESC or F5 or ⌘. - added chance to select something and wrap it into corresponding closing char for ( ' " ` {
* • Bundle EditorBibiko2010-11-291-5/+16
| | | | | - fixed an init font setting problem (thanks to Rowan) - further work on triggers
* • Bundle EditorBibiko2010-11-231-21/+0
| | | | | | | - bailed out from approach to assign more than one scope to Bundle commands; now there're three scopes available: Input Field (incl. Query Editor since it only differs in current_query and insert_as_snippet which falls back to current_line and tooltip message), Data Table, and General (which means that these commands are available app-wide) - moved "Disable Command" to scope popup menu since it's related - Input Field and Data Table commands will be shown as submenus in the Bundles main menu; all General commands will be added without creating a special submenu (only Category submenus will be generated) - fixed and simplified several issues
* • added some convenience functionality to bundle editor's command ↵Bibiko2010-11-221-0/+268
| | | | textview: shift right/left, newline is aware of indention, (un)comment single line due to first line bound to the same short-cuts as for Custom Query editor but without any GUI buttons
* • added line numbering and current line highlighting to Bundle Editor's ↵Bibiko2010-11-211-15/+135
| | | | | | | command text view • made each Bundle in/ouptut file name unique to allow to run different Bundle commands at the same time • fixed minor issues for Bundle Editor
* • added SPBundleCommandTextView and use it instead of SPEditSheetTextVIew ↵Bibiko2010-11-201-0/+360
since it works in a sheet only and due to future extensions • fixed init in SPEditSheetTextView • Bundle Editor: minor bug fixing