Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-05-10 | Lexer added for Visual Prolog. Feature #3523018. | nyamatongwe | 1 | -0/+1 | |
From Thomas Linder Puls. | |||||
2012-05-09 | OScript lexer by Ferdinand Prantl added. Feature #3523018. | nyamatongwe | 1 | -0/+1 | |
2012-05-08 | Feature #3520037. Trim current selection when setting a word or | nyamatongwe | 2 | -5/+11 | |
line selection to avoid any doubly selected ranges. | |||||
2012-05-05 | Replace std::auto_ptr with own code as has been deprecated by C++11. | nyamatongwe | 1 | -2/+15 | |
2012-05-04 | Bug #3522250. Group undo for newline with selection. | nyamatongwe | 1 | -2/+11 | |
2012-05-04 | Bug #3522251. SCI_NEWLINE with multiple selections now only replaces the | nyamatongwe | 1 | -0/+5 | |
main selection. | |||||
2012-04-24 | Feature #3520037. Restore Ctrl+Triple Click adding a line to the selection. | nyamatongwe | 1 | -1/+1 | |
Collapse selection if multiple selection turned off. From Marko Njezic. | |||||
2012-04-23 | Feature #3520037. Modify Ctrl+Double Click change so that does not trigger | nyamatongwe | 1 | -1/+1 | |
except for transition from character selection to word selection. | |||||
2012-04-23 | Bug #3519246. Stop allowing selection into virtual space for rectangular ↵ | nyamatongwe | 1 | -1/+1 | |
selection when virtual space set to SCVS_USERACCESSIBLE. | |||||
2012-04-23 | Allow Ctrl+Double Click to add words to the selection. | nyamatongwe | 1 | -1/+2 | |
2012-04-21 | Avoid warning from cppcheck for not checking for self assignment. | nyamatongwe | 1 | -12/+14 | |
2012-04-15 | Add an option to draw wrap markers in line number margin. Feature #3518198. | Marko Njezic | 1 | -20/+25 | |
2012-04-21 | Ensure annotation box is drawn using base style. Bug #3519872. | nyamatongwe | 1 | -1/+1 | |
2012-04-16 | Matched spelling change. | nyamatongwe | 1 | -2/+2 | |
2012-04-15 | Printing uses different margins, so reset screen margins. Bug #3517854. | Marko Njezic | 1 | -0/+4 | |
2012-04-14 | Make FindColumn() return correct position when column falls inside tab ↵ | Marko Njezic | 1 | -0/+2 | |
width. Bug #3483713. | |||||
2012-04-16 | Case-insensitive auto-completion selection. Bug #3516538. | nyamatongwe | 3 | -2/+13 | |
From Markus Nißl. | |||||
2012-04-14 | Remove dead code. Feature #3517596. | nyamatongwe | 1 | -1/+0 | |
From Marko Njezic. | |||||
2012-04-14 | Remove isindentchar as it duplicated IsSpaceOrTab. Made IsSpaceOrTab static. ↵ | nyamatongwe | 1 | -6/+2 | |
Feature #3517596. From Marko Njezic. | |||||
2012-04-14 | Remove GoodTrailByte as it duplicated IsTrailByte. Simplified IsTrailByte. ↵ | nyamatongwe | 1 | -7/+3 | |
Feature #3517596. From Marko Njezic. | |||||
2012-04-14 | Remove Fold method as identical to superclass. Feature #3517596. | nyamatongwe | 1 | -10/+0 | |
From Marko Njezic. | |||||
2012-04-14 | Remove unused WhiteSpace get/set. Feature #3517596. | nyamatongwe | 2 | -11/+0 | |
From Marko Njezic. | |||||
2012-04-13 | Include wrap indentation in alpha selection when selecting whole lines. Bug ↵ | Marko Njezic | 1 | -0/+4 | |
#3515555. | |||||
2012-04-12 | Avoid drawing alpha selection into wrap indentation area. Bug #3515555. | nyamatongwe | 1 | -1/+1 | |
2012-04-12 | Bug #3514882. Fix recent change set 4086 which caused selection to end of a ↵ | nyamatongwe | 1 | -1/+2 | |
wrapped subline to continue 1 pixel into the next subline. From Marko Njezic. | |||||
2012-04-11 | Bug #3514882. Properly draw translucent whole line states, by respecting right | nyamatongwe | 1 | -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-11 | Bug #3514882. Properly determine last line that needs to be styled before | nyamatongwe | 1 | -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-11 | Bug #3514882. Stop invalidating pixmapLine (and indirectly pixmapSelMargin) | nyamatongwe | 1 | -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-06 | Remove unused variable. | nyamatongwe | 3 | -4/+0 | |
From Marko Njezic. | |||||
2012-04-06 | Bug #3513946. Make printing work when Direct2D is used for on screen drawing. | nyamatongwe | 2 | -6/+9 | |
This will stop Scintilla from crashing. From Marko Njezic. | |||||
2012-03-31 | Make MoveSelectedLines() work properly when there's no newline at EOF. Bug ↵ | Marko Njezic | 1 | -8/+25 | |
#3511023. | |||||
2012-04-03 | Moved wrap indent code to wrapping branch. | nyamatongwe | 1 | -11/+6 | |
2012-03-31 | Bug #3512961. Word wrap indentation for print using positions calculated for | nyamatongwe | 2 | -11/+11 | |
display instead of printer. | |||||
2012-03-27 | Protect against modifying annotations with a negative line number or a line | nyamatongwe | 2 | -31/+37 | |
number after the document end. | |||||
2012-03-25 | Replace \0 by found text in regular expressions search | Unknown | 1 | -2/+2 | |
2012-03-21 | Ensure segment discovery always makes progress even for invalid UTF-8. | nyamatongwe | 1 | -1/+6 | |
2012-02-29 | Always record undo action for Ctrl+D | Unknown | 1 | -1/+1 | |
2012-03-03 | Fix crash caused by NULL pointer for SCI_MOVESELECTEDLINESDOWN. Bug #3496403. | nyamatongwe | 1 | -1/+1 | |
2012-03-03 | Remove unused variables. Bug #3494744. From Marko Njezic. | nyamatongwe | 3 | -6/+0 | |
2012-03-01 | Bug #3494492. Change aveCharWidth in FontMeasurements to actually store | nyamatongwe | 3 | -4/+4 | |
fractional width. This change complements change set 3994. Make WidthText() and AverageCharWidth() actually return fractional widths under Direct2D. From Marko Njezic. | |||||
2012-02-29 | Centre RGBA markers in all cases including when larger than allocation. Bug ↵ | nyamatongwe | 1 | -1/+7 | |
#3494184. | |||||
2012-02-29 | Bug #3493503. Clip drawing operations to the painting area when using unbuffered | nyamatongwe | 1 | -5/+10 | |
mode. This prevents parts of margin being drawn out of bounds. Don't set clipping region when buffered mode is used, as it is not necessary. From Marko Njezic. | |||||
2012-02-27 | Feature #3493530. Reduce amount of redrawing triggered by ↵ | nyamatongwe | 1 | -2/+3 | |
SCI_MARKERSETBACKSELECTED and SCI_MARKERENABLEHIGHLIGHT. From Marko Njezic. | |||||
2012-02-25 | Remove unused variable. | Marko Njezic | 2 | -6/+0 | |
2012-02-25 | Bug #3493503. Properly redraw image markers with height larger than line height. | Marko Njezic | 3 | -1/+39 | |
Regression from change set 3949. | |||||
2012-02-17 | Draw markers horizontally off center only on textual margins. Bug #3488696. | Marko Njezic | 3 | -5/+5 | |
2012-02-17 | Make fold tail markers vertically centered. | Marko Njezic | 1 | -13/+12 | |
2012-02-18 | Wrap lines if needed when moving to a position. Bug #3487397. | nyamatongwe | 1 | -3/+7 | |
From Marko Njezic. | |||||
2012-02-18 | Lexer added for ECL language. Feature #3488209. | nyamatongwe | 1 | -0/+1 | |
2012-02-15 | Bug #3487440. Fix bug where setting an indicator on for whole document | nyamatongwe | 1 | -2/+2 | |
had no effect since that was regarded as an empty indicator. |