Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-08-11 | Handle empty pre-edit string.rel-3-5-0 | Neil | 1 | -1/+1 | |
From johnsonj. | |||||
2014-08-09 | Change log. | Neil | 1 | -0/+3 | |
2014-08-09 | Added registry lexer to Cocoa build. | Neil Hodgson | 1 | -0/+4 | |
2014-08-09 | Documented SC_MOD_CHANGETABSTOPS. | Neil | 1 | -1/+14 | |
2014-08-09 | Added lexer for registry files. | Neil | 5 | -0/+450 | |
From nkmathew. | |||||
2014-08-09 | Change log. | Neil | 1 | -0/+4 | |
2014-08-09 | Getting ready to release 3.5.0. | Neil | 7 | -15/+17 | |
2014-08-08 | Fix leak in ListBox::GetSelection() on GTK | Colomban Wendling | 1 | -2/+4 | |
2014-08-08 | Change log. | Neil | 1 | -1/+1 | |
2014-08-08 | Allow IME to be displayed inline for Korean. | Neil | 1 | -28/+133 | |
From johnsonj. | |||||
2014-08-08 | Stop using last argument to AddCharUTF from Korean IME code as previus release | Neil | 2 | -5/+5 | |
always used false for last argument so changing mynot be cmpatible. Move maxLenInputIME to superclass where it can be used for all platforms. | |||||
2014-08-08 | Implement explicit tab stops per line. | Neil | 10 | -4/+290 | |
From Nick Gravgaard. | |||||
2014-08-08 | Remove extra whitespace. | Neil | 1 | -10/+10 | |
2014-08-06 | Change log. | Neil | 1 | -0/+4 | |
2014-08-06 | Fix the platform scope to work on Linux. | Neil | 1 | -1/+1 | |
2014-08-06 | Change log. | Neil | 1 | -0/+16 | |
2014-08-06 | Bug [#1635]. Make build on FreeBSD 9.2. | Neil | 1 | -1/+4 | |
2014-08-06 | Bug [#1634]. Set qt list icon size to largest icon. Also adds padding on OS X. | Neil | 1 | -4/+40 | |
2014-08-06 | Feature [feature-requests:#1065]. Add SCI_* for methods to ↵ | Neil | 1 | -0/+2 | |
ScintillaConstants.py. | |||||
2014-08-06 | Feature [feature-requests:#1064]. Add a get_character method on the document. | Neil | 2 | -0/+6 | |
2014-08-06 | Bug [#1633]. Redraw selection after SCI_DELWORDRIGHT. | Neil | 2 | -0/+6 | |
2014-08-05 | Create a class to manage pre-edit strings and ensure their resources are freed. | Neil | 1 | -33/+31 | |
2014-08-05 | Fix problem where annotations disappeared when SCI_CLEARDOCUMENTSTYLE called. | Neil | 2 | -0/+4 | |
2014-08-03 | Made destructor virtual to avoid warnings. | Neil | 1 | -1/+1 | |
2014-08-01 | Rust: Slightly refactor/comment the number literal scanning. | SiegeLord | 1 | -12/+25 | |
One change introduced by this is that the malformed literal is detected a little earlier in some cases than before. | |||||
2014-08-02 | Clang warns for register keyword used in system headers so turn off warning. | Neil | 1 | -1/+1 | |
2014-08-02 | Change log. | Neil | 1 | -0/+4 | |
2014-08-01 | Support transpose character after {} operator | John Donoghue | 1 | -1/+4 | |
* lexers/LexMatlab.cxx (ColouriseMatlabOctaveDoc): add check in default state for '}' to allow transpose. | |||||
2014-07-30 | Change log. | Neil | 1 | -0/+9 | |
2014-07-29 | Rust: Highlight byte-string literals. | SiegeLord | 3 | -22/+48 | |
This adds support for two new string literals and one new string literal, corresponding to the existing versions of these. Compared to the originals, the new literals have slightly different escapes and are ASCII only. I've decided to simply add flags to the existing scanners to handle them. New styles had to be added to handle the line spanning string literals. The byte character style was added for consistency. | |||||
2014-07-29 | Rust: Allow escaping naked CR in strings. | SiegeLord | 1 | -1/+1 | |
2014-07-29 | Rust: Update hashbang comment syntax. | SiegeLord | 1 | -1/+1 | |
Hashbang comments that start with the following 3 characters: #![ do not count as hashbang comments, but rather some other syntax (inner attribute). | |||||
2014-07-30 | Ruby: fix theoretical missing assignment and remove dead one | Colomban Wendling | 1 | -1/+1 | |
2014-07-29 | Allow identifier suffix = in Ruby symbol literals | Colomban Wendling | 1 | -1/+6 | |
See comments in bug [#1627] for some details. | |||||
2014-07-29 | Allow global/class/instance variables as Ruby symbol literals | Colomban Wendling | 1 | -0/+25 | |
See comments in bug [#1627] for some details. | |||||
2014-07-29 | Bug [#1627]. Allow FIDs as Ruby symbol literals | Colomban Wendling | 1 | -1/+5 | |
2014-07-30 | Removed NotifyChar tha is not needed from new Korean IME code and use correct | Neil | 1 | -6/+2 | |
value for treatAsDBCS argument to AddCharUTF. | |||||
2014-07-29 | Fixing previous change for mako to be type-safe. | Neil | 1 | -1/+1 | |
2014-07-26 | Bug [#1622]. Don't crash with ## comments in Mako. | Neil | 1 | -1/+7 | |
From John Ehresman. | |||||
2014-07-24 | Fix section end. | Neil | 1 | -1/+1 | |
2014-07-24 | Ensure all fields initialised in constructor. | Neil | 2 | -11/+7 | |
2014-07-24 | Using separate variable imeCaretBlockOverride for IME mode instead of changing | Neil | 4 | -16/+8 | |
caretStyle as there could be confusion if the container changes caret style. | |||||
2014-07-24 | Mark const methods const. | Neil | 3 | -3/+3 | |
2014-07-24 | Remove line end whitespace. | Neil | 2 | -2/+2 | |
2014-07-24 | Remove false shadowing between local variables and enum values. | Neil | 1 | -48/+48 | |
2014-07-24 | Feature [feature-requests:#1059]. Disable -Wshadow warnings for lexers. | Neil | 1 | -0/+5 | |
2014-07-23 | Avoid shadowed names mostly in method prototypes. Turn off shadow | Neil | 7 | -23/+23 | |
warnings for lexers since they may be maintained by others. | |||||
2014-07-23 | Add PerLine.h to the header order. | Neil | 1 | -0/+1 | |
2014-07-23 | Limit and simplify variable lifetimes used in the IME code. | Neil | 1 | -8/+4 | |
From johnsonj and Neil. | |||||
2014-07-22 | Merged with GTK+ change. | Neil | 1 | -0/+4 | |