Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-03-25 | New case insensitive searching implementation uses objects implementing | nyamatongwe | 1 | -0/+59 | |
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms. | |||||
2010-03-23 | Upper and lower casing now works on non-ASCII characters. | nyamatongwe | 1 | -0/+52 | |
2010-03-17 | Fix for bug #2971618 Middle-click paste inserts text beyond end of line. | nyamatongwe | 1 | -1/+1 | |
2010-03-17 | Made multiple paste work on GTK+. | nyamatongwe | 1 | -4/+1 | |
2010-03-17 | Fixed bug where extra NUL was inserted when pasting a rectangular | nyamatongwe | 1 | -0/+2 | |
selection. | |||||
2010-03-13 | Ensured member initialized. Removed EOL whitespace. | nyamatongwe | 1 | -7/+7 | |
2010-03-13 | Removed unused variable and code that calculates it. | nyamatongwe | 1 | -8/+5 | |
2010-02-24 | Turn off integer wrap warning in ContractionState.cxx caused by inlining. | nyamatongwe | 1 | -1/+1 | |
2010-01-28 | Avoiding warnings from cppcheck. Mostly removing bodies of private copy | nyamatongwe | 2 | -6/+6 | |
constructors and operator=. Also ensuring initialisation for some fields, reducing scope where possible, and passing by const reference. | |||||
2010-01-23 | Should work on older versions of Pango that do not have | nyamatongwe | 1 | -1/+9 | |
pango_layout_get_line_readonly. | |||||
2010-01-20 | Added Markdown lexer. | nyamatongwe | 1 | -228/+231 | |
2009-11-02 | Added setting for font quality to allow application to choose anti-aliased, | nyamatongwe | 1 | -1/+1 | |
non-anti-aliased or lcd-optimized text. | |||||
2009-08-28 | When pasting into a rectangular selection use the start of the rectangular | nyamatongwe | 1 | -1/+3 | |
selection rather than the start of the main range which is often the last line. | |||||
2009-08-27 | Markdown lexer from FR #2844081. | nyamatongwe | 2 | -6/+10 | |
2009-08-26 | New Pango code placed in #ifdef so not compiled on GTK+ 1.x. | nyamatongwe | 1 | -0/+4 | |
2009-08-26 | Made Japanese and Chinese code pages 932, 936 and 950 work on GTK+. | nyamatongwe | 2 | -8/+32 | |
2009-08-26 | Handle measurement of ligatures more uniformly. | nyamatongwe | 1 | -44/+59 | |
Refactored cluster iteration into a class. Use read-only layout objects as supposed to be a performance benefit. | |||||
2009-08-14 | Fixed problem with drag and drop of rectangular selection | nyamatongwe | 1 | -9/+8 | |
to position after selection where position was not adjusted for removal of every piece of selection. | |||||
2009-08-13 | Using simple variables to hold pkg-config info so not run | nyamatongwe | 1 | -4/+4 | |
for every compile. | |||||
2009-07-25 | Protection against NULL pointer when copying empty selection. | nyamatongwe | 1 | -3/+4 | |
2009-07-24 | Updated deps. | nyamatongwe | 1 | -201/+174 | |
2009-07-21 | Using std::string rather than SString. | nyamatongwe | 1 | -0/+1 | |
2009-07-21 | Removed SString.h. | nyamatongwe | 2 | -105/+102 | |
2009-07-21 | Using a much simpler property set implementation. | nyamatongwe | 1 | -0/+1 | |
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString. | |||||
2009-07-21 | Replacing SString with std::string. | nyamatongwe | 1 | -1/+0 | |
2009-07-14 | Include vector as needed by Selection. | nyamatongwe | 1 | -0/+2 | |
2009-07-12 | Removed trace. | nyamatongwe | 1 | -1/+0 | |
2009-07-12 | Allow setting the modifier key to be used for rectangular | nyamatongwe | 1 | -13/+38 | |
selection on GTK+. Paste can be performed in virtual space on GTK+ | |||||
2009-07-10 | Duplicate works on discontiguous selections by duplicating each selection. | nyamatongwe | 1 | -2/+1 | |
UndoGroup class simplifies grouping actions together in the undo history. | |||||
2009-07-07 | Using the last style on a line to determine the width of a virtual space | nyamatongwe | 1 | -2/+1 | |
rather than use the default style. This adapts better for comments which use a different font. | |||||
2009-07-06 | Made drag into virtual space work for some cases on GTK+. | nyamatongwe | 1 | -15/+17 | |
2009-07-04 | Made drag and drop work - return value from PositionInSelection was changed | nyamatongwe | 1 | -1/+1 | |
for multiple selection. | |||||
2009-07-03 | Use screen point for caret that includes virtual spcace so that, for | nyamatongwe | 1 | -2/+2 | |
example, the IME appears near the caret when the caret is in virtual space. Changed LocationFromPosition to work on a SelectionPosition and added convenience method for finding screen point of main caret. | |||||
2009-07-03 | Discontiguoues selection and virtual space initial commit. | nyamatongwe | 3 | -17/+24 | |
2009-06-13 | Patch from Wingware to make width of autocompletion more | nyamatongwe | 1 | -5/+26 | |
consistent by ensuring width of pixmap taken into account even when no pixmap yet displayed. | |||||
2009-05-19 | Fix for bug #2793806 warnings for typpe punned pointer from g++. | nyamatongwe | 1 | -12/+19 | |
Still type punning but g++ lets this through. | |||||
2009-05-06 | First stage of Cocoa platform addition. | nyamatongwe | 1 | -54/+54 | |
Changed identifier id since this is a reserved word in Objective C. SCI_LEXER and SCI_NAMESPACE turned on automatically for OS X native compilation. | |||||
2009-05-03 | Turned on exceptions. | nyamatongwe | 3 | -665/+828 | |
Translate exceptions into status codes before leaving Scintilla. Pick up status codes in SciTE and throw a ScintillaFailure exception. SciTE on Windows catches ScintillaFailure, shows message and exits. | |||||
2009-04-21 | Replaced call to deprecated gtk_widget_set_uposition with gtk_window_move | nyamatongwe | 1 | -1/+5 | |
when on GTK+ 2.x. | |||||
2009-04-12 | Annotations and text margins added. | nyamatongwe | 2 | -41/+93 | |
2009-03-29 | Lexer for SML. Feature Request #2710950. | nyamatongwe | 2 | -1/+4 | |
2009-03-04 | Nimrod lexer from Andreas Rumpf added. | nyamatongwe | 2 | -5/+8 | |
2009-02-14 | Fix from Todd to make Unicode calltips work on GTK+. | nyamatongwe | 1 | -0/+2 | |
2009-01-23 | Reinstated EScript after license returned to standard Scintilla license. | nyamatongwe | 3 | -6/+13 | |
2009-01-22 | EScript removal. | nyamatongwe | 1 | -4/+0 | |
2009-01-22 | Removal of EScript lexer cause changes to build files, etc. | nyamatongwe | 2 | -9/+6 | |
2009-01-01 | Lexer for PowerPro from Christopher Bean. | nyamatongwe | 2 | -4/+7 | |
2008-12-16 | Namespace work for OS X / XCode compatibility. | nyamatongwe | 1 | -1/+7 | |
2008-12-13 | Lexer added for SORCUS Installation files. | nyamatongwe | 2 | -3/+6 | |
2008-12-12 | Added namespace support. | nyamatongwe | 2 | -0/+8 | |