aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2013-01-26Use CXXFLAGS for C++ only, not for C.nyamatongwe1-3/+3
2013-01-11Add folding support to the GetText (PO) lexerColomban Wendling1-1/+65
2013-01-19Add private copy constructors to prevent copying and avoid warnings.nyamatongwe4-0/+11
2013-01-19Implement provisional category and place Unicode line ends and substyles ↵nyamatongwe4-62/+101
into it.
2013-01-19Implement Unicode line ends and substyles in C++ lexer.nyamatongwe2-21/+267
2013-01-19Implement generic support for Unicode line ends and sub styles in lexer ↵nyamatongwe3-16/+260
support classes.
2013-01-19Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,nyamatongwe9-8/+206
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends.
2013-01-19To allow for new line end sequences implement IsPositionInLineEnd on thenyamatongwe3-6/+19
document and use it instead of checks for particular byte values. Use equivalent checks against numCharsBeforeEOL in other contexts. When line ends visible, display byte value blobs for non-ASCII line ends.
2013-01-19Implement APIs for Unicode line ends and substyles and expose tonyamatongwe6-9/+220
message interface. Expose IDocumentWithLineEnd interface on Document.
2013-01-19Add methods for Unicode line ends and substyles to IDocument and ILexernyamatongwe2-4/+57
producing IDocumentWithLineEnd and ILexerWithSubStyles.
2013-01-19Add encodingType and documentVersion to decode and cache informationnyamatongwe1-2/+18
about the document.
2013-01-17Added tag rel-3-2-4 for changeset 1092d3d24959nyamatongwe1-0/+1
2013-01-15Update release date.nyamatongwe2-3/+3
2013-01-14Updated history with changes for 3.2.4.nyamatongwe2-1/+77
2013-01-12Fix copy&paste error in comment.nyamatongwe1-1/+1
2013-01-11Prepare for 3.2.4.nyamatongwe7-13/+22
2013-01-11Feature: [#970]. Latex folding and better syntax highlighting.nyamatongwe1-0/+4
From G. Hu.
2013-01-11Feature: [#970]. Latex folding and better syntax highlighting.nyamatongwe5-297/+547
From G. Hu.
2013-01-11Bug: [#1436] Remove as observer in TimerTarget dealloc.nyamatongwe1-0/+2
2013-01-10Updated to style hidden commands differently.nyamatongwe3-69/+118
From Mike Lischke.
2013-01-10Removed dead stores.nyamatongwe1-2/+2
2013-01-10Add a replace method and a parameter for backwards search.nyamatongwe2-24/+180
From Mike Lischke.
2013-01-10Turn off undo collection for IME composition.nyamatongwe2-17/+37
From Mike Lischke.
2013-01-10Switched Alt+Delete to delete word left to be more compatible withnyamatongwe1-1/+1
OS X standards.
2013-01-08Bug: [#1289]. Replace null characters by spaces in the clipboard to avoid thatVivian De Smedt1-0/+13
its content is truncated in the paste operation.
2013-01-08Fix memory leak.nyamatongwe1-1/+1
2013-01-06Bug #1430. Fix crash when printing line longer than 8000 characters.nyamatongwe1-1/+1
2013-01-04Explaining that annotations affect the relationship between documentnyamatongwe1-4/+10
lines and display lines.
2013-01-04When setting a font name, set first 128 styles insted of 32 as willnyamatongwe1-1/+1
work for more lexers. From Mike Lischke at Oracle.
2013-01-04Implement a delegate for Scintilla notifications.nyamatongwe2-1/+20
From Mike Lischke at Oracle.
2013-01-04Fix retain count of timerTarget so it can be deallocated.nyamatongwe1-1/+1
From Mike Lischke at Oracle.
2013-01-04Fix object ownership and thus memory management. Change owner and backendnyamatongwe2-7/+8
properties to (nonatomic, assign) as pointers to owners should not be retained and backend is a pointer to a C++ object. Move property declarations before methods. Update copyright notice. From Mike Lischke at Oracle.
2013-01-04Fix positioning of autompletion lists on retina displays.nyamatongwe1-2/+1
From Mike Lischke at Oracle.
2013-01-03Added modern indicators to API list.nyamatongwe1-1/+16
2013-01-03Fix behaviour of the left and right keys after ↵nyamatongwe1-0/+4
SCI_SETSELECTIONMODE(SC_SEL_STREAM) where moving both left and right collapsed the selection instead of shrinking the selection by one character.
2013-01-01Properly update the Pango contexts for the target surfaceColomban Wendling1-0/+4
This fixes drawing on a surface that has different settings (like scaling) than the display surface, by performing the measurements on a layout properly set up for the target surface. In practice, this fixes e.g. printing on a scaled surface. --- gtk/PlatGTK.cxx | 4 ++++ 1 file changed, 4 insertions(+)
2013-01-01Avoid deprecated threads APIs when using GDK >= 3.6.Neil Hodgson1-0/+8
2013-01-01Switch to non-deprecated thread and mutex APIs when using GLib >= 2.31.Neil Hodgson1-0/+12
2013-01-01Feature #3592730. Option for caret line to be visible without focus.nyamatongwe7-2/+30
From Vidya Wasi.
2013-01-01Added Quantum GIS as related project.nyamatongwe1-0/+4
2012-12-30Fix parsing of JavaScript regular expressions containing a delimiter in a rangeColomban Wendling1-6/+11
Regular expression "/[/]/" is valid, the second "/" being escaped by the character range ("[]"). Also, escape any \-prefixed character, including "[" and "]".
2012-12-30Fixed invalid octal number 0f.nyamatongwe1-1/+1
2012-10-26cocoa: avoid dividing by zero when setting vertical scroll positionMook1-1/+2
2012-12-30Credit.nyamatongwe1-0/+1
2012-12-30Bug #3578824. Ignore comments when evaluating preprocessor expressions.nyamatongwe1-1/+4
From Isiledhel.
2012-12-30Bug #3578824. Avoid crashes due to char being signed so negative for non-ASCII.nyamatongwe1-5/+5
From Isiledhel.
2012-11-10Group undo actions in autocompleteJakub Vrana1-0/+1
2012-12-28Included definition for Gui4Cli language.nyamatongwe1-0/+1
2012-10-22Added tag rel-3-2-3 for changeset 7d54d6d61acenyamatongwe1-0/+1
2012-10-20Fixed bug number in history.nyamatongwe1-1/+1