Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-02-14 | Fix 64->32 bit conversion warnings. | Neil Hodgson | 5 | -43/+48 | |
2015-02-14 | Fix doc comments. | Neil Hodgson | 4 | -5/+5 | |
2015-02-13 | Remove unused state. | Neil | 1 | -1/+1 | |
2015-02-13 | Ensure style data OK before wrapping lines when changing documents. | Neil | 1 | -0/+1 | |
2015-02-12 | Fixed bad end tag. | Neil | 1 | -1/+1 | |
2015-02-11 | Add the OLEAUT32 library as it will be needed for BSTR support. | Neil | 2 | -2/+2 | |
2015-02-10 | Log for previous Verilog change. | Neil | 1 | -0/+1 | |
2015-02-09 | add support for escaped identifiers | Joe Mueller | 1 | -1/+13 | |
2015-02-10 | Fix hang in folding when document starts with "entity". | Neil | 2 | -3/+7 | |
From Vicente. | |||||
2015-02-10 | Add INDIC_FULLBOX. | Neil | 5 | -6/+24 | |
2015-02-07 | Update on SciTE crash. | Neil | 1 | -0/+4 | |
2015-02-04 | Implement hover style and colour for indicators. | Neil | 13 | -54/+203 | |
2015-02-02 | Added <deque> to order. | Neil | 1 | -0/+1 | |
2015-01-30 | fix folding bugs with extern and pure virtual functions/tasks. fix folding ↵ | Joe Mueller | 1 | -1/+57 | |
bugs with wait fork and disable fork statements. | |||||
2015-01-30 | Change log. | Neil | 1 | -0/+3 | |
2015-01-29 | fix problem with folding comments by re-folding the previous line as was ↵ | Joe Mueller | 1 | -1/+12 | |
done in LexerModule::Fold | |||||
2015-01-26 | Use QElapsedTimer::nsecsElapsed for more accurate measurement of durations. | Neil | 2 | -6/+17 | |
2015-01-24 | Fix a bug with the q-quote operator. | Neil | 2 | -23/+30 | |
From Michael Staszewski. | |||||
2015-01-22 | Fix compilation failure of C++11 <regex> on Windows using gcc. | Neil | 2 | -4/+8 | |
2015-01-22 | Add INDIC_COMPOSITIONTHIN indicator. | Neil | 5 | -1/+20 | |
2015-01-22 | Since gtk_widget_set_double_buffered is deprecated by GTK+ 3.14, only use it | Neil Hodgson | 1 | -0/+2 | |
when building for earlier versions. | |||||
2015-01-22 | Specify methods that do not use this as static. | Neil Hodgson | 1 | -2/+2 | |
2015-01-22 | Fix incorrect call. Was supposed to avoid empty drop. | Neil Hodgson | 1 | -1/+1 | |
2015-01-22 | Feature [feature-requests:#1098]. Accept `is`/`us` integer suffixes instead of | Neil | 2 | -1/+17 | |
`i`/`u`. From Mika Attila. | |||||
2015-01-20 | Added tag rel-3-5-3 for changeset 8b21bf82adac | Neil | 1 | -0/+1 | |
2015-01-16 | When the mouse is on the line between margin and text changed to treat as within | Neil | 3 | -1/+10 | |
text. Helps on PLAT_CURSES. | |||||
2015-01-15 | LexHex: reorder lexer states after addition of the "unknown record type" | Markus Heidelberg | 2 | -30/+30 | |
Move the new state SCE_HEX_RECTYPE_UNKNOWN (was 17) up just below its counterpart SCE_HEX_RECTYPE (2). | |||||
2015-01-14 | Make Japanese IME work in windowed mode. | Neil Hodgson | 1 | -1/+1 | |
From johnsonj. | |||||
2015-01-14 | Preparing for version 3.5.3. | Neil | 7 | -16/+17 | |
2015-01-14 | Change log. | Neil | 1 | -2/+4 | |
2015-01-13 | fix bug in handling of comments, make some new features conditional on lexer ↵ | Joe Mueller | 1 | -19/+29 | |
properties to preserve backwards compatibility | |||||
2015-01-13 | LexHex S-Record: use the required data field size for some highlighting | Markus Heidelberg | 1 | -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-13 | LexHex: use SCE_HEX_RECTYPE_UNKNOWN also for Srec and IHex | Markus Heidelberg | 1 | -4/+22 | |
2015-01-13 | Using size_t instead of unsigned int for conversions to UTF16 for 64-bit | Neil | 4 | -22/+22 | |
compatibility and to lessen the number of casts. | |||||
2015-01-11 | Change log. | Neil | 1 | -0/+3 | |
2015-01-11 | LexHex: add a default case for handling faulty states to all lexers | Markus Heidelberg | 1 | -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-11 | LexHex: add a new state for garbage data after the record | Markus Heidelberg | 3 | -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-11 | LexHex Tektronix: use more address field types, not just data address | Markus Heidelberg | 1 | -8/+30 | |
Also use the new function for checking whether the record type is unknown. | |||||
2015-01-11 | LexHex: move general helper function up and add a prototype | Markus Heidelberg | 1 | -17/+18 | |
Even if it is only used in the Tektronix lexer. | |||||
2015-01-11 | LexHex Tektronix: use the dedicated helper function for getting the length | Markus Heidelberg | 1 | -1/+2 | |
2015-01-11 | LexHex Tektronix: fix whitespace issues and remove unused leftover code | Markus Heidelberg | 1 | -11/+14 | |
Also clarify the intention of embracing the states in the format description. | |||||
2015-01-11 | LexHex: rename Tektronix extended HEX lexer from "thex" to "tehex" | Markus Heidelberg | 4 | -19/+19 | |
There exists a similar file format called "Textronix HEX", which would be the better candidate for this short name. | |||||
2015-01-11 | Support removed for Windows 95, 98, and ME. | Neil | 4 | -94/+25 | |
2015-01-10 | On Windows GDI, assume font names are encoded in UTF-8 and use wide character | Neil | 4 | -17/+30 | |
calls to allow use of Asian font names. | |||||
2015-01-09 | Bug [#1679]. Extra warning. | Neil | 1 | -0/+1 | |
2015-01-08 | Feature [feature-requests:#1096]. Lexer added for Tektronix extended hex files. | Neil | 5 | -1/+212 | |
From danselmi. | |||||
2015-01-07 | Suppress new warning in cppcheck 1.68 in a lexer. | Neil | 1 | -0/+1 | |
2015-01-07 | Hide files created by Visual Studio Analyze. | Neil | 1 | -0/+1 | |
2015-01-06 | attempt to fix compile errors with different versions of g++ caused by ↵ | Joe Mueller | 1 | -4/+5 | |
missing inclusion of algorithm header file. | |||||
2015-01-06 | modify LexVerilog.cxx to support coloring of inactive code due to ↵ | Joe Mueller | 1 | -142/+652 | |
preprocessor commands |