aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2012-05-05Make destructors virtual to avoid warnings from g++ 4.7.nyamatongwe6-5/+7
2012-05-04Bug #3522250. Group undo for newline with selection.nyamatongwe1-2/+11
2012-05-04Bug #3522251. SCI_NEWLINE with multiple selections now only replaces thenyamatongwe1-0/+5
main selection.
2012-04-30When attempting to show invalid text in find indicator, hide the indicator.nyamatongwe1-1/+3
2012-04-29Ignore smooth scrolling events.nyamatongwe1-0/+7
2012-04-29Fix deprecation warning for GTK+ 3.4.nyamatongwe1-0/+5
2012-04-29Fix autocompletion list being too short on GTK+ 3.x.nyamatongwe1-1/+6
2012-04-26Fix crash where find indicator range fragments a character.nyamatongwe1-1/+2
2012-04-26Fix bug identified by Xcode Analyze.nyamatongwe1-1/+1
2012-04-24Feature #3520037. Restore Ctrl+Triple Click adding a line to the selection.nyamatongwe1-1/+1
Collapse selection if multiple selection turned off. From Marko Njezic.
2012-04-23Feature #3520037. Modify Ctrl+Double Click change so that does not triggernyamatongwe1-1/+1
except for transition from character selection to word selection.
2012-04-23Bug #3519246. Stop allowing selection into virtual space for rectangular ↵nyamatongwe1-1/+1
selection when virtual space set to SCVS_USERACCESSIBLE.
2012-04-23Allow Ctrl+Double Click to add words to the selection.nyamatongwe1-1/+2
2012-04-21Fix problem where PHP sequence stops backtracking to tag start. Bug #3520027.nyamatongwe1-3/+4
Now backtracks by whole lines until not inside tag.
2012-04-21Fix problem with JavaScript /*/ which starts a comment. Bug #3520032.nyamatongwe1-0/+4
2012-04-21Use a cast to avoid warnings from cppcheck about sign extension of characters.nyamatongwe1-1/+1
2012-04-21Use C++ casts instead of C casts to avoid warnings from cppcheck.nyamatongwe1-5/+5
2012-04-21Avoid warning from cppcheck for not checking for self assignment.nyamatongwe1-12/+14
2012-04-15Add an option to draw wrap markers in line number margin. Feature #3518198.Marko Njezic4-20/+33
2012-04-21Ensure annotation box is drawn using base style. Bug #3519872.nyamatongwe1-1/+1
2012-04-20Added tag rel-3-1-0 for changeset a92195777290nyamatongwe1-0/+1
2012-04-16Updating 3.1.0 release.nyamatongwe1-0/+3
2012-04-16Preparing 3.1.0 release.nyamatongwe5-15/+103
2012-04-16Implemented find indicator with animation for OS X.nyamatongwe7-2/+313
2012-04-16Matched spelling change.nyamatongwe1-2/+2
2012-04-16Fixed spelling.nyamatongwe3-7/+7
2012-04-15Printing uses different margins, so reset screen margins. Bug #3517854.Marko Njezic1-0/+4
2012-04-16Updated tests for bug #3518198.nyamatongwe1-1/+3
2012-04-14Make FindColumn() return correct position when column falls inside tab ↵Marko Njezic1-0/+2
width. Bug #3483713.
2012-04-16Case-insensitive auto-completion selection. Bug #3516538.nyamatongwe7-2/+37
From Markus Nißl.
2012-04-14Remove dead code. Feature #3517596.nyamatongwe1-1/+0
From Marko Njezic.
2012-04-14Remove isindentchar as it duplicated IsSpaceOrTab. Made IsSpaceOrTab static. ↵nyamatongwe1-6/+2
Feature #3517596. From Marko Njezic.
2012-04-14Remove GoodTrailByte as it duplicated IsTrailByte. Simplified IsTrailByte. ↵nyamatongwe1-7/+3
Feature #3517596. From Marko Njezic.
2012-04-14Remove Fold method as identical to superclass. Feature #3517596.nyamatongwe1-10/+0
From Marko Njezic.
2012-04-14Remove unused WhiteSpace get/set. Feature #3517596.nyamatongwe2-11/+0
From Marko Njezic.
2012-04-13Include wrap indentation in alpha selection when selecting whole lines. Bug ↵Marko Njezic1-0/+4
#3515555.
2012-04-12Avoid drawing alpha selection into wrap indentation area. Bug #3515555.nyamatongwe1-1/+1
2012-04-12Bug #3514882. Fix recent change set 4086 which caused selection to end of a ↵nyamatongwe1-1/+2
wrapped subline to continue 1 pixel into the next subline. From Marko Njezic.
2012-04-11Change return type to position as it is returning a position.nyamatongwe1-1/+1
2012-04-11Bug #3514882. Properly draw translucent whole line states, by respecting rightnyamatongwe1-9/+9
margin and also not going out of bounds. Don't go out of bounds into right margin when drawing beyond EOF area. From Marko Njezic.
2012-04-11Bug #3514882. Properly determine last line that needs to be styled beforenyamatongwe1-2/+2
painting by calling StyleToPositionInView() after style data is refreshed, so that PositionAfterArea() can use the correct line height in calculation. This problem was introduced in change set 3259. From Marko Njezic.
2012-04-11Bug #3514882. Stop invalidating pixmapLine (and indirectly pixmapSelMargin)nyamatongwe1-1/+0
unnecessary on each call to Paint(). This was added in change set 2688 as part of a fix for resource leaks problem in palette mode, which doesn't exist anymore. From Marko Njezic.
2012-04-09Protect against NULLs when text is not valid in encoding.nyamatongwe1-3/+5
2012-04-06Remove unused variable.nyamatongwe3-4/+0
From Marko Njezic.
2012-04-06Bug #3513946. Make printing work when Direct2D is used for on screen drawing.nyamatongwe2-6/+9
This will stop Scintilla from crashing. From Marko Njezic.
2012-03-31Make MoveSelectedLines() work properly when there's no newline at EOF. Bug ↵Marko Njezic1-8/+25
#3511023.
2012-04-03Moved wrap indent code to wrapping branch.nyamatongwe1-11/+6
2012-04-02Turn on multi-process compilation.nyamatongwe1-2/+1
2012-03-31Bug #3512961. Word wrap indentation for print using positions calculated fornyamatongwe2-11/+11
display instead of printer.
2012-03-30Credit.nyamatongwe1-0/+1