aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-03-14Avoid warning about uninitialised member.nyamatongwe1-0/+1
2010-03-14More members initialised in constructor even though they will be filled innyamatongwe1-0/+7
later by Realise.
2010-03-14Fixed bug where number of character in regular expression replace wasnyamatongwe1-0/+1
miscounting size of result which could lead to NULs in result.
2010-03-13Adding const to methods where possible.nyamatongwe11-26/+26
2010-03-13Change definition of Sci_RangeToFormat to avoid reliance on Platform.h.nyamatongwe1-1/+1
2010-03-11Implemented multipaste as an option.nyamatongwe2-0/+42
2010-03-11Using passed length rather than 0 termination in case need to process textnyamatongwe1-1/+1
containing NULs.
2010-03-09Bug fix from Todd at ActiveState so that unindent works on rectangularnyamatongwe1-1/+1
selection.
2010-03-06Optimized setting wrap attributes by only calling ReconfigureScrollBars ifnyamatongwe1-9/+15
the attribute has changed value since ReconfigureScrollBars is unexpectedly slow on GTK+.
2010-03-05Stripped trailing whitespace.nyamatongwe1-28/+28
2010-03-03Allow multiple uses of Delete key to coalesce into a single undo action.nyamatongwe1-1/+1
2010-02-28Fix for bug #2959876 Regular expression replace cannot escape \nyamatongwe1-0/+3
2010-02-25Fix for bug #2958043 Text disappears when the "wrap" option is onnyamatongwe1-1/+5
2010-02-24Bug #2956543, R Lexer is case insensitive for keywordsnyamatongwe1-2/+2
2010-02-21Patch from Haimag Ren adds folding of line comments.nyamatongwe1-0/+25
2010-02-19Fix for bug #2951353 HotSpotRange clearing when mouse moves out of window.nyamatongwe2-1/+7
2010-02-17FIx for bug #2950799 up/down-arrow column stickiness confused by horiznyamatongwe1-11/+11
scroll
2010-02-17Formatting whitespace.nyamatongwe36-213/+209
2010-02-15Fix for bug #2948260 Rectangular selection expansionnyamatongwe1-0/+6
2010-02-09Patch from scintilla-interest to send all bytes of multi-byte typed charnyamatongwe1-6/+10
to container as SCI_REPLACESEL when in macro recording mode.
2010-02-08Fix for bug #2947064 SCI_SETSEL leaves multiple selectionsnyamatongwe1-0/+2
2010-02-08Cosmetic: removed trailing space.nyamatongwe1-34/+34
2010-02-05Support for not terminating strings at line end to support Ren'Py langaugenyamatongwe1-1/+5
with Python lexer. Feature Request #2945550.
2010-01-31Added SCI_SETFIRSTVISIBLELINE to match SCI_GETFIRSTVISIBLELINE.nyamatongwe1-0/+4
2010-01-31Enhanced Erlang lexer. Bug #2942448.nyamatongwe1-450/+543
2010-01-30Fix bug #2942131 Caret pos after rectagular delete.nyamatongwe4-16/+42
2010-01-28Avoiding warnings from cppcheck. Mostly removing bodies of private copynyamatongwe5-11/+10
constructors and operator=. Also ensuring initialisation for some fields, reducing scope where possible, and passing by const reference.
2010-01-26Fix to allow compiling on old version of GCC 3.3.3. Bug #2940511.nyamatongwe2-2/+6
2010-01-21Fix for bug #2936108 SC_WRAPVISUALFLAGLOC_END_BY_TEXT has not worked sincenyamatongwe1-1/+1
2.0.
2010-01-20Fixed warning *again*.nyamatongwe1-1/+1
2010-01-19Avoid warning from cppcheck about not ensuring NUL termination afternyamatongwe1-0/+1
strncpy.
2010-01-19Reduced scope of variable.nyamatongwe1-1/+1
2010-01-19Fully intialize Action.nyamatongwe1-0/+1
2010-01-19Avoid warning from cppchecker in bug #2903391.nyamatongwe1-3/+1
2010-01-19Removed unnecessary check for NULL.nyamatongwe1-2/+1
2010-01-16Fix for bug #2929708 Assertion in SplitVector adding line after addingnyamatongwe1-0/+1
annotation.
2010-01-15Fix for bug #2930488 Select All doesn't work if there's a rectangularnyamatongwe1-0/+1
selection.
2009-12-19Fix for bug #2914691 Wrong background colour when using coloured lines withnyamatongwe1-1/+1
virtual space.
2009-12-12Feature request #2902206 from Yuval.nyamatongwe1-19/+21
Improve handling of comments in preprocessor declaration Cleaning code Improve documentation
2009-12-12Bug #2901239 fix. VB: "Module" in last line problemnyamatongwe1-0/+34
2009-11-02Support for SQL Anywhere allowing "ENDIF" to terminate a fold and an optionnyamatongwe1-3/+11
for "EXISTS" not to.
2009-11-02Added setting for font quality to allow application to choose anti-aliased,nyamatongwe6-4/+25
non-anti-aliased or lcd-optimized text.
2009-11-01Fix for bug #2890105, last line has EOLFilled style but blank space beforenyamatongwe1-0/+2
background colour.
2009-10-27Added GetLexerLanguage.nyamatongwe1-9/+6
2009-10-27Added StringResult method to return strings in the standard way.nyamatongwe2-0/+11
2009-10-24Added undo grouping for SCI_DELWORDRIGHT and SCI_DELWORDRIGHTEND.nyamatongwe1-0/+2
2009-10-22Fix for bug #2882566.nyamatongwe1-1/+13
Virtual space removed when performing delete word left or delete line left. Virtual space converted to real space for delete word right. Preserve virtual space when preesing Delete key.
2009-10-20Ensure enough styles allocated when choosing a lexer.nyamatongwe1-0/+4
Fixes bug #2881279.
2009-10-18AutoCGetCurrentText added by Nick Treleaven.nyamatongwe2-0/+21
2009-10-16Setting to make additional carets invisible from Florian Balmer.nyamatongwe2-1/+13