aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/simpleTests.py
AgeCommit message (Collapse)AuthorFilesLines
2022-05-17Duplicate APIs to support 64-bit document positions on Win32:Neil1-0/+17
SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, and SCI_FORMATRANGEFULL.
2022-03-15Feature [feature-requests:#1431] Add SCI_GETSTYLEINDEXAT API to return stylesNeil1-3/+6
over 127 as positive integers.
2021-11-13Bug [#2294] Fix assertion failure with autocompletion list when order isNeil1-0/+40
SC_ORDER_CUSTOM or SC_ORDER_PERFORMSORT and the list is empty.
2021-11-12Remove XiteQt.py as ScintillaEditPy is no longer included in ScintillaNeil1-4/+1
and the required PySide library no longer supported.
2021-11-12Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistentNeil1-1/+1
with other APIs with respect to buffer lengths.
2021-10-03Feature [feature-requests:#1417] Add DEL (0x7F) to set of space characters.Neil1-6/+3
2021-09-02Bug [#2281] Fix crash with too many subexpressions in regular expression searchNeil1-0/+22
with SCFIND_CXX11REGEX.
2021-08-24Remove line end white space.Neil1-9/+9
2021-08-24Feature [feature-requests:#841] SCI_SETCARETLINEHIGHLIGHTSUBLINE enablesZufu Liu1-0/+8
highlighting just the subline with the caret when wrapping is on.
2021-07-31Implement StyleSetCheckMonospaced.Neil1-0/+5
2021-06-25Feature [feature-requests:#1400] Set buffering when technology set.Zufu Liu1-0/+26
2021-06-10Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting textNeil1-2/+2
provided as an argument instead of from the system clipboard.
2021-06-09Add SCI_PASTERECTANGULAR to insert text like a rectangular paste.Mitchell Foral1-0/+6
2021-06-03Add APIs for setting appearance (traditional blob or plain text) and colour ofNeil1-0/+25
representations and support setting a representation for the "\r\n" line end sequence.
2021-05-30Fix GetFontQuality. Simplify code that calls FlagSet.Neil1-0/+5
2021-05-15Updated test since setting the alpha of caret line when it hasn't had colour setNeil1-0/+1
no longer sets it to have a colour.
2021-05-14Implement SC_LAYER_UNDER_TEXT so that selections, caret lines, and content areaNeil1-4/+4
markers can be drawn translucently under text.
2021-05-14Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE andNeil1-0/+32
SC_ELEMENT_HOT_SPOT_ACTIVE_BACK.
2021-05-14Add SCI_MARKERSETLAYER to define layer on which to draw content area markers.Neil1-0/+7
This replaces the use of SC_ALPHA_NOALPHA for markers.
2021-05-12Switch caret line background colour to SC_ELEMENT_CARET_LINE_BACK element andNeil1-16/+85
add SetCaretLineLayer. Older caret line APIs SCI_SETCARETLINEVISIBLE, SCI_SETCARETLINEBACK, SCI_SETCARETLINEBACKALPHA now discouraged.
2021-05-11Add test for SelectionLayer.Neil1-0/+6
2021-05-11Implement SCI_GETELEMENTBASECOLOUR to return the default values for elementNeil1-6/+22
colours.
2021-05-11Add tests for element APIs. Fix SCI_GETELEMENTCOLOUR to return value includingNeil1-0/+33
alpha. Set selection and caret elements as allowing translucency.
2021-04-20Bug [#2027]. Implement font locale SCI_SETFONTLOCALE on Win32 using DirectWrite.Neil1-0/+7
2021-03-12Remove SetLexer, SetLexerLanguage, and LoadLexerLibrary methods.Neil1-3/+3
These have been superceded by Lexilla and the SetILexer API.
2020-11-07Try to load Lexilla for tests that need a lexer but skip the tests when LexillaNeil1-17/+42
not found. Unicode line ends only tested with Lexilla as they require a lexer that supports Unicode line ends.
2020-08-25Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN.Derek Brown1-0/+40
2020-04-17Update Python versions for files that may involve PySide on Linux which requiresNeil1-0/+1
Python 2 still. On Windows, Python3 is used.
2020-04-08Feature [feature-requests:1344]. Add methods for iterating through the markerIain Clarke1-3/+36
handles and marker numbers on a line.
2019-11-26Bug [#2140]. Fix where anchor and caret differ only in amount of virtual spaceNeil1-0/+18
so one was considered start and was moved for an insertion at that position. This could flip the order of the positions or change the length of the selection.
2019-11-25Fix regression in 7773 where position wasn't moved on to account for virtualNeil1-0/+32
space consumption.
2019-11-24Bug [#2140]. Move rather than grow selection when insertion at start.Neil1-0/+92
2019-11-21Add test to ensure indicators move sensibly as text is inserted.Neil1-3/+40
2019-11-15Feature [feature-requests:#1316] Allow target to have virtual space.Neil1-0/+20
2019-11-15Feature [feature-requests:#1316] Add access to virtual space at start and end ofNeil1-0/+4
multiple selections.
2019-06-15Test Scintilla GetStatus and SetStatus.Neil1-0/+7
2019-05-02Optimize SCI_GETTEXT by calling Document::GetCharRange instead of looping forNeil1-1/+6
each byte.
2019-04-05Feature [feature-requests:#1272]. Add API to set default fold display text.Neil1-0/+5
2019-03-31Feature [feature-requests:#1272]. Add FoldDisplayTextGetStyle to matchZufu Liu1-0/+5
FoldDisplayTextSetStyle.
2019-03-29Feature [feature-requests:#1259]. Add SCI_SETCHARACTERCATEGORYOPTIMIZATION APINeil1-0/+5
to optimize speed of character category features.
2018-10-09Extra tests for out-of-range arguments.Neil1-0/+3
2018-07-10Optional indexing of line starts in UTF-8 documents by UTF-32 code points andNeil1-0/+95
UTF-16 code units added.
2018-02-24Fix move-extends-selection mode for rectangular and line selections.Mitchell Foral1-0/+82
2016-02-23Retry OpenClipboard if it fails as another application may have opened it.Neil1-3/+4
2015-09-04Bug [#1757]. Treat CRLF as two characters in SCI_COUNTCHARACTERS.Neil1-0/+8
2015-06-11Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, andNeil1-0/+54
TargetWholeDocument.
2015-04-14Ensure SCI_TEXTHEIGHT uses valid style data and remove test pauses thatNeil1-3/+0
hid this.
2014-08-08Implement explicit tab stops per line.Neil1-0/+74
From Nick Gravgaard.
2014-08-08Remove extra whitespace.Neil1-10/+10
2014-05-24Removing style byte indicators.Neil1-4/+0