aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2015-02-17Reindented file consistently with 4 space indents using astyle -s4 -OHUKk3Neil1-410/+411
The file had become a mixture of tab indenting and space indenting amd the most common indentation was 4 spaces. No other changes were made in this change set.
2015-02-17Bug [#1697]. Allow folding of multiline comments in Ruby.Neil1-0/+24
2015-02-16Fix bugs caused by deleting text with undo collection off when entering IME ↵Neil Hodgson2-14/+45
composition mode. This deleted text isn't in the undo history and it isn't in the document so can never be recovered so makes it impossible to correctly perform undo. Add logging for unexpected situations and throw an exception when undo can't be performed. Ensure empty marked text range is always in canonical (NSNotFound,0) form.
2015-02-16Implement SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 on Cocoa.Neil Hodgson3-1/+94
2015-02-15Add SC_INDICFLAG_VALUEFORE and INDIC_TEXTFORE to allow a wide range of indicatorNeil12-19/+130
colours and to change the colour of text.
2015-02-15Change log.Neil1-0/+4
2015-02-11Don't disable adaptive speed of scrolling on OS X with GTK Quartz backendJiří Techet1-3/+4
There does not seem to be any adaptive scroll speed control when using the Quartz backend so we can use the one provided by Scintilla.
2015-02-15Change log.Neil1-1/+2
2015-02-12fix problem with typdef class statements creating a fold point, expecting an ↵Joe Mueller1-3/+13
endclass statement
2015-02-14Fix unused parameter warnings. Remove code that is never executed.Neil Hodgson2-7/+12
2015-02-14Fix warnings for suspicious type conversions and not fully bracketed ↵Neil Hodgson7-71/+73
initializers,
2015-02-14Fix 64->32 bit conversion warnings.Neil Hodgson5-43/+48
2015-02-14Fix doc comments.Neil Hodgson4-5/+5
2015-02-13Remove unused state.Neil1-1/+1
2015-02-13Ensure style data OK before wrapping lines when changing documents.Neil1-0/+1
2015-02-12Fixed bad end tag.Neil1-1/+1
2015-02-11Add the OLEAUT32 library as it will be needed for BSTR support.Neil2-2/+2
2015-02-10Log for previous Verilog change.Neil1-0/+1
2015-02-09add support for escaped identifiersJoe Mueller1-1/+13
2015-02-10Fix hang in folding when document starts with "entity".Neil2-3/+7
From Vicente.
2015-02-10Add INDIC_FULLBOX.Neil5-6/+24
2015-02-07Update on SciTE crash.Neil1-0/+4
2015-02-04Implement hover style and colour for indicators.Neil13-54/+203
2015-02-02Added <deque> to order.Neil1-0/+1
2015-01-30fix folding bugs with extern and pure virtual functions/tasks. fix folding ↵Joe Mueller1-1/+57
bugs with wait fork and disable fork statements.
2015-01-30Change log.Neil1-0/+3
2015-01-29fix problem with folding comments by re-folding the previous line as was ↵Joe Mueller1-1/+12
done in LexerModule::Fold
2015-01-26Use QElapsedTimer::nsecsElapsed for more accurate measurement of durations.Neil2-6/+17
2015-01-24Fix a bug with the q-quote operator.Neil2-23/+30
From Michael Staszewski.
2015-01-22Fix compilation failure of C++11 <regex> on Windows using gcc.Neil2-4/+8
2015-01-22Add INDIC_COMPOSITIONTHIN indicator.Neil5-1/+20
2015-01-22Since gtk_widget_set_double_buffered is deprecated by GTK+ 3.14, only use itNeil Hodgson1-0/+2
when building for earlier versions.
2015-01-22Specify methods that do not use this as static.Neil Hodgson1-2/+2
2015-01-22Fix incorrect call. Was supposed to avoid empty drop.Neil Hodgson1-1/+1
2015-01-22Feature [feature-requests:#1098]. Accept `is`/`us` integer suffixes instead ofNeil2-1/+17
`i`/`u`. From Mika Attila.
2015-01-20Added tag rel-3-5-3 for changeset 8b21bf82adacNeil1-0/+1
2015-01-16When the mouse is on the line between margin and text changed to treat as withinNeil3-1/+10
text. Helps on PLAT_CURSES.
2015-01-15LexHex: reorder lexer states after addition of the "unknown record type"Markus Heidelberg2-30/+30
Move the new state SCE_HEX_RECTYPE_UNKNOWN (was 17) up just below its counterpart SCE_HEX_RECTYPE (2).
2015-01-14Make Japanese IME work in windowed mode.Neil Hodgson1-1/+1
From johnsonj.
2015-01-14Preparing for version 3.5.3.Neil7-16/+17
2015-01-14Change log.Neil1-2/+4
2015-01-13fix bug in handling of comments, make some new features conditional on lexer ↵Joe Mueller1-19/+29
properties to preserve backwards compatibility
2015-01-13LexHex S-Record: use the required data field size for some highlightingMarkus Heidelberg1-29/+75
Equal to how it is already implemeted for the Intel HEX lexer. Specific record types do not use a data field, the checksum field directly follows the address field then. In these cases now the byte count field is also marked as wrong if its content is not what is to be expected for this record type. Also the checksum field is now fixed after the address field instead of allowing data field in between if the byte count is too big. Also simplify this code path for IHex to be equal to the Srec code.
2015-01-13LexHex: use SCE_HEX_RECTYPE_UNKNOWN also for Srec and IHexMarkus Heidelberg1-4/+22
2015-01-13Using size_t instead of unsigned int for conversions to UTF16 for 64-bitNeil4-22/+22
compatibility and to lessen the number of casts.
2015-01-11Change log.Neil1-0/+3
2015-01-11LexHex: add a default case for handling faulty states to all lexersMarkus Heidelberg1-0/+15
If the state variable is set to a state not used in this lexer, an endless loop would occur because Forward() is never invoked then.
2015-01-11LexHex: add a new state for garbage data after the recordMarkus Heidelberg3-8/+14
IHex and Srec just set to the DEFAULT state before, TEHex used the SCE_HEX_DATA_UNKNOWN state for garbage data, which is not the actual intention for this state.
2015-01-11LexHex Tektronix: use more address field types, not just data addressMarkus Heidelberg1-8/+30
Also use the new function for checking whether the record type is unknown.
2015-01-11LexHex: move general helper function up and add a prototypeMarkus Heidelberg1-17/+18
Even if it is only used in the Tektronix lexer.