Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-04 | Fix incorrect inclusion of SCE_HA_ prefix in HTML lexer and friends | nyamatongwe | 1 | -4/+4 | |
Of course it can be done only with SCE_H_ SCE_HJ SCE_HB SCE_HP prefixes, but this short variant leads to same issues as previous prefix. From Denis Shelomovskij. | |||||
2012-07-04 | Spaced consistently. From Denis Shelomovskij. | nyamatongwe | 1 | -2/+2 | |
2012-07-04 | Added reference to QGrinUI. | nyamatongwe | 1 | -0/+5 | |
2012-07-02 | When line starts with 0 width character, do not allow end of previous line | nyamatongwe | 1 | -0/+2 | |
to be part of block caret range. | |||||
2012-07-02 | Implement clipped text drawing on Direct2D. This will improve drawing of | nyamatongwe | 1 | -1/+9 | |
text blobs and block carets. From Marko Njezic. | |||||
2012-06-27 | Fix screen redraw issues introduced with change set 4199. | Marko Njezic | 1 | -6/+7 | |
2012-07-02 | Remove unnecessary check. | nyamatongwe | 1 | -1/+1 | |
2012-07-02 | Remove functions provided by headers. | nyamatongwe | 1 | -9/+0 | |
2012-07-02 | Make IsLowerCase and IsUpperCase not depend on non-portable isascii, take | nyamatongwe | 2 | -8/+8 | |
an int argument to match similar calls, and move to header for wider use. | |||||
2012-07-02 | Remove unnecessary check. | nyamatongwe | 1 | -2/+2 | |
2012-07-02 | Treat negative values as non-ASCII. | nyamatongwe | 1 | -1/+1 | |
2012-07-02 | Ensure full initialised. | nyamatongwe | 1 | -1/+1 | |
2012-07-02 | Reduce scope of variable. | nyamatongwe | 1 | -1/+1 | |
2012-07-01 | Fix hang when Zero Width Space U+200B occurs at start of document. | nyamatongwe | 1 | -1/+1 | |
2012-06-29 | Fix 64-bit compilation errors on Windows. | nyamatongwe | 2 | -3/+4 | |
From Fan Yang. | |||||
2012-06-27 | Document limitations in styling of text margins and annotations. | nyamatongwe | 1 | -1/+7 | |
2012-06-27 | Using the correct side margin for previous commit. | nyamatongwe | 1 | -1/+1 | |
2012-06-26 | Bugs #699587, #3537799. Allow text at start of line to overlap 1 pixel | nyamatongwe | 1 | -3/+16 | |
into the margin as this displays serifs and italic stems for aliased text. | |||||
2012-06-26 | Fixed incorrect comment. | nyamatongwe | 1 | -1/+1 | |
2012-06-23 | Added some related projects mentioned on the mailing list. | nyamatongwe | 1 | -0/+21 | |
2012-06-22 | Added reference to LIVEditor. | nyamatongwe | 1 | -0/+4 | |
2012-06-22 | Bug #3487406. New style SCE_C_PREPROCESSORCOMMENT for stream comments | nyamatongwe | 5 | -4/+18 | |
inside preprocessor directives. Includes code from Marko Njezic. | |||||
2012-06-22 | Prevent empty lines from continuing preprocessor style. | nyamatongwe | 3 | -3/+14 | |
2012-06-19 | Credit. | nyamatongwe | 1 | -0/+1 | |
2012-06-19 | Removed limitation that is no longer true. | nyamatongwe | 1 | -3/+1 | |
2012-06-18 | Removed unnecessary code after change for bug #3535806. | nyamatongwe | 1 | -6/+1 | |
2012-06-18 | Remove marker only once for SCI_MARKERDELETE. Bug #3535806. | nyamatongwe | 3 | -4/+16 | |
2012-06-17 | Use std::string instead of fixed size strings. | nyamatongwe | 6 | -36/+55 | |
Decrease direct access to the autocompletion list box from outside AutoComplete. | |||||
2012-06-16 | Existing autocompletion list is cancelled when single entry automatically | nyamatongwe | 1 | -0/+1 | |
accepted. | |||||
2012-06-16 | Redraw margin when changing margin styles. | nyamatongwe | 1 | -0/+2 | |
2012-06-13 | Discover name of qmake as it is qmake-qt4 in some distributions of Linux. | Neil Hodgson | 1 | -2/+9 | |
2012-06-13 | Moved Qt platform section as it was interfering with GTK+ sub-platforms. | nyamatongwe | 1 | -4/+4 | |
2012-06-13 | Fix extra comma. Bug #3534667. | nyamatongwe | 1 | -1/+1 | |
2012-06-13 | Detect too many parameters in function, display error and throw exception. | nyamatongwe | 1 | -2/+6 | |
2012-06-12 | Reindented as was inconsistent. | nyamatongwe | 1 | -35/+34 | |
2012-06-12 | Fix truncation of descenders and underscores in list box. | nyamatongwe | 1 | -1/+1 | |
From Mike Lischke. | |||||
2012-06-12 | Fix double free of font objects with list box by copying font. | nyamatongwe | 2 | -1/+14 | |
2012-06-11 | Typo in comment. | nyamatongwe | 1 | -1/+1 | |
2012-06-11 | Credit. | nyamatongwe | 1 | -0/+1 | |
2012-06-09 | support LESS/HSS | pelsass | 1 | -8/+21 | |
2012-06-08 | Bug #3533036. Properly mask state when determining previous | Marko Njezic | 1 | -1/+1 | |
non whitespace character and counting visible characters in line. | |||||
2012-06-07 | Initial version of build checker script. | nyamatongwe | 1 | -0/+75 | |
2012-06-07 | Protect against APIs only available on 10.6+ when building for 10.5. | nyamatongwe | 2 | -0/+16 | |
2012-06-07 | Use clang instead of gcc for ScintillaTest as that allows building for | nyamatongwe | 1 | -0/+2 | |
OS X 10.5 with Xcode 4.3.2. | |||||
2012-06-04 | Properly position caret after undoing coalesced delete operations. Bug #3523326. | Marko Njezic | 1 | -4/+27 | |
2012-06-04 | Validate length of deletion: negative values caused crashes. | nyamatongwe | 1 | -1/+1 | |
2012-06-04 | Credit. | nyamatongwe | 1 | -0/+2 | |
2012-06-04 | Document new character set methods. | nyamatongwe | 1 | -7/+24 | |
2012-06-04 | Fix return value from new methods GetWhitespaceChars and GetPunctuationChars. | nyamatongwe | 1 | -2/+2 | |
2012-05-29 | add CharClassifier::GetCharsOfClass | Mook | 10 | -2/+295 | |
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 |