Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-05-10 | Handle most stringresult methods generically. | nyamatongwe | 1 | -88/+32 | |
Make compatible with PyPy. | |||||
2013-05-08 | Avoid warning. | nyamatongwe | 1 | -0/+20 | |
2013-05-05 | Make test run on older version of Python. | nyamatongwe | 1 | -1/+1 | |
2013-05-04 | Added tests for CopyAllowLine, SelectionDuplicate, and LineTranspose. | nyamatongwe | 1 | -0/+24 | |
2013-02-25 | Editor: SCI_LINESCROLL: treat columns as signed | Mook | 1 | -1/+9 | |
2013-02-05 | Add allocation of extended styles. | nyamatongwe | 1 | -0/+12 | |
2013-01-19 | Implement Unicode line ends and substyles in C++ lexer. | nyamatongwe | 1 | -0/+195 | |
2012-10-04 | Fix bug where non-ASCII hex escape did not match. | nyamatongwe | 1 | -0/+8 | |
2012-09-12 | Fix bug where removing all characters from indicator at end of document did | nyamatongwe | 1 | -0/+33 | |
not remove that run causing iteration over the indicator to hang. | |||||
2012-07-17 | Use byte strings to make work with Python 3.2 on Windows 2000. | nyamatongwe | 1 | -7/+7 | |
2012-06-18 | Remove marker only once for SCI_MARKERDELETE. Bug #3535806. | nyamatongwe | 1 | -0/+10 | |
2012-05-29 | add CharClassifier::GetCharsOfClass | Mook | 1 | -1/+128 | |
add SCI_GETWORDCHARS(<unused>, stringresult chars) command to get word chars add SCI_GETWHITESPACECHARS(<unused>, stringresult chars) to get whitespace chars add SCI_GETPUNCTUATIONCHARS(<unused>, stringresult chars) to get punctutation also add tests for {Set,Get}{Word,Whitespce,Punctuation}Chars, CharClassifier | |||||
2012-05-26 | Add DeleteRange method. | nyamatongwe | 1 | -0/+7 | |
2012-05-26 | Add GetRangePointer and GetGapPosition methods. | nyamatongwe | 1 | -1/+31 | |
2012-04-16 | Updated tests for bug #3518198. | nyamatongwe | 1 | -1/+3 | |
2011-10-23 | Avoid crashing for SCI_MARKERNEXT starting at -1. Bug #3427270. | nyamatongwe | 1 | -0/+3 | |
2011-09-24 | Extra test to check MarkerNext optimization. | nyamatongwe | 1 | -0/+1 | |
2011-07-25 | Using 'from __future__ import unicode_literals' to make work on Python 2.7. | nyamatongwe | 1 | -2/+6 | |
2010-06-18 | Fix for bug #3017572 FindText crashes with empty text | nyamatongwe | 1 | -0/+4 | |
Always return start position when search text is empty. | |||||
2010-03-26 | Added SCI_GETTAG. | nyamatongwe | 1 | -5/+9 | |
2010-03-25 | New case insensitive searching implementation uses objects implementing | nyamatongwe | 1 | -0/+78 | |
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms. | |||||
2010-03-23 | Upper and lower casing now works on non-ASCII characters. | nyamatongwe | 1 | -0/+62 | |
2010-02-28 | Fix for bug #2959876 Regular expression replace cannot escape \\ | nyamatongwe | 1 | -0/+9 | |
2010-01-31 | Better coverage display. | nyamatongwe | 1 | -1/+4 | |
2010-01-31 | Added SCI_SETFIRSTVISIBLELINE to match SCI_GETFIRSTVISIBLELINE. | nyamatongwe | 1 | -0/+23 | |
2009-10-27 | Added GetLexerLanguage. | nyamatongwe | 1 | -0/+19 | |
2009-10-18 | Autocompletion tests. | nyamatongwe | 1 | -0/+87 | |
2009-07-22 | Tests for multiple selection, rectangular selection and virtual space. | nyamatongwe | 1 | -0/+127 | |
2009-05-12 | Include tests in standard repository. | nyamatongwe | 1 | -0/+897 | |