Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-07-06 | Change log. | Neil | 1 | -0/+3 | |
2015-07-06 | Upgrading Python to an object lexer that supports substyles. | Neil | 2 | -73/+237 | |
2015-07-06 | SCI_SETIDENTIFIERS resets styling ensuring any added identifier are highlighted. | Neil | 2 | -0/+4 | |
2015-07-05 | Change log. | Neil | 1 | -0/+3 | |
2015-07-05 | Change log. | Neil | 1 | -0/+4 | |
2015-07-05 | GTK: Fix leaking scrollbars | Colomban Wendling | 1 | -0/+3 | |
2015-07-04 | Closer correspondence between return type of *WndProc and Win32 definition. | Neil | 1 | -9/+9 | |
Avoids potential problems if sptr_t changed to a slightly different type. | |||||
2015-07-04 | Make std::exception visible to all core code to remove chance that a different | Neil | 16 | -0/+19 | |
tool set will not indirectly include <stdexcept>. | |||||
2015-07-04 | Unit tests need to see std::exception now. | Neil | 3 | -0/+3 | |
2015-07-04 | Also need to see std::exception in PerLine. | Neil | 1 | -0/+1 | |
2015-07-04 | Throw an exception for a negative sized reallocation as occurs when asked | Neil Hodgson | 3 | -0/+5 | |
for more than 2GB. | |||||
2015-07-04 | On Cocoa, translate exceptions into error codes. | Neil Hodgson | 1 | -44/+50 | |
2015-07-03 | Feature [feature-requests:#1109]. SCN_AUTOCCOMPLETED sent after text insertion. | Jonathan Hunt | 6 | -18/+151 | |
From Jonathan Hunt. | |||||
2015-06-30 | Added SC_CASE_CAMEL to the case mode style attribute. | Neil | 6 | -4/+25 | |
2015-06-29 | Change log. | Neil | 1 | -0/+3 | |
2015-06-27 | Merged from different machines. | Neil | 1 | -2/+2 | |
2015-06-27 | Make documentation of SCI_MARKERENABLEHIGHLIGHT consistent. | Neil | 1 | -1/+1 | |
2015-06-26 | Updated OS X deployment target to 10.7 at the project level as it already was | Neil Hodgson | 1 | -2/+2 | |
at the target level. | |||||
2015-06-26 | Added CodeMirror to list of editing components. | Neil | 1 | -0/+4 | |
2015-06-26 | Change log. | Neil | 1 | -0/+3 | |
2015-06-25 | Fix regression due to recent multiple-selection changes with the selection not | Neil Hodgson | 1 | -1/+1 | |
being redrawn after up/down cursor. | |||||
2015-06-25 | Change log. | Neil Hodgson | 1 | -0/+5 | |
2015-06-25 | Bug [#1740]. Cancel autocompletion and calltip when window moved. | Neil Hodgson | 3 | -0/+24 | |
2015-06-25 | Bug [#1740]. Improve autocompletion positioning to avoid being off-screen. | Neil Hodgson | 1 | -2/+14 | |
Not perfect when the Scintilla view is overlapping the screen edge or dock as the position moved to is based on the view's area. | |||||
2015-06-24 | Simplify text measurement and drawing by removing segmentation and failure | Neil | 1 | -88/+25 | |
handling that was needed to support Windows 95. | |||||
2015-06-24 | Make multiple selection work over most cursor movement and selection, new line, | Neil | 6 | -338/+577 | |
and word and line part deletion commands. | |||||
2015-06-24 | Fix URL to point to correct download. | Neil | 1 | -1/+1 | |
2015-06-23 | Casts to silence warnings for 64-bit builds. | Neil | 1 | -2/+2 | |
2015-06-22 | Remove some annoying messages from cppcheck. | Neil | 1 | -1/+7 | |
2015-06-20 | Updating download sizes. | Neil | 1 | -2/+2 | |
2015-06-20 | Fixed API name for selecting each. | Neil | 1 | -1/+1 | |
2015-06-20 | Added tag rel-3-5-7 for changeset 49ce1d4c2dea | Neil | 1 | -0/+1 | |
2015-06-19 | Updates for release 3.5.7.rel-3-5-7 | Neil | 6 | -13/+15 | |
2015-06-19 | Updates for release 3.5.7. | Neil | 1 | -2/+5 | |
2015-06-19 | Fix crash in drag and drop. | Neil Hodgson | 3 | -3/+16 | |
2015-06-19 | Updated test program with Xcode recommended settings. | Neil Hodgson | 1 | -5/+7 | |
2015-06-16 | Clean up some selection operations. Commonly when changing selection modes, | Neil | 4 | -30/+36 | |
all of the selection needs to be redrawn so that is implmeneted in Editor::InvalidateWholeSelection. Any extra selections should be discarded with only the main remaining so that is Selection::DropAdditionalRanges. Some default parameters led to less clarity so they no longer have default values. Both Editor::MovePositionTo methods always returned 0 which was ignored so they are now void. Some variables were made const. | |||||
2015-06-13 | Fix bug where maximum two selections possible at once with Ctrl+click due | Neil Hodgson | 1 | -6/+6 | |
to change in CancelModes. | |||||
2015-06-12 | Change log. | Neil | 1 | -0/+4 | |
2015-06-09 | When combining MarkerHandlerSets, prepend the other set instead of appending | Jiřà Techet | 1 | -2/+3 | |
When undoing many lines with markers (e.g. "changebar" markers) LineMarkers::RemoveLine() is called for many lines and as a result combining markers from the next line for all the removed lines. This may cause the list contains many thousands of elements and traversing it becomes expensive. When lines are removed from the beginning to the end, it's better to prepend the markers from the next line to the current line instead of appending them because the current line "accumulates" all the markers from the following lines and walking the whole list takes more and more time. | |||||
2015-06-11 | Added explanation of SCI_MULTIPLESELECTADDEACH. | Neil | 1 | -3/+7 | |
2015-06-11 | Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and | Neil | 9 | -10/+188 | |
TargetWholeDocument. | |||||
2015-06-11 | Explain styling a little more. | Neil | 1 | -4/+7 | |
2015-06-10 | Change log. | Neil Hodgson | 1 | -0/+8 | |
2015-06-05 | Simplified retrieval of correct display for widget and ensure works on older ↵ | nyamatongwe | 2 | -15/+2 | |
versions of GTK+. | |||||
2015-06-04 | Move FindText flag decoding from caller to function to minimize code and chance | Neil | 3 | -20/+6 | |
of mistakes. | |||||
2015-06-04 | Remove cppcheck suppression that is no longer needed. | Neil | 1 | -3/+0 | |
2015-06-04 | Use static_cast instead of C-style casts to avoid warnings. | Neil | 1 | -41/+41 | |
2015-06-04 | Restored compatibility with GTK+ 2.18 for cursor calls. | nyamatongwe | 2 | -2/+9 | |
2015-06-03 | GTK: Don't use gdk_window_set_user_data() in a deprecated manner | Colomban Wendling | 1 | -0/+4 | |
Since GTK 3.8 gtk_widget_register_window() should be used instead of gdk_window_set_user_data() in a widget's ::realize() method. gtk_widget_unregister_window() is called by the GtkWidget's ::unrealize() handler we chain up to. This has no functional impact. |