aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2020-05-04Change log.Neil1-0/+4
2020-05-04Feature [feature-requests:1347]. Optimize large insertions by using aZufu Liu1-29/+122
table-driven line end discovery algorithm and performing line insertions in batches.
2020-05-04Feature [feature-requests:1347]. Add methods to insert multiple partitions.Neil2-0/+46
2020-05-03Feature [feature-requests:1347]. Add InsertLines method to PerLine interface andNeil9-3/+418
all implementations. This will allow insertion of lines in batches in a future change set. Added tests for PerLine implementations.
2020-05-02Optimize LineVector by maintaining an activeIndices field to avoid callingNeil1-30/+34
LineStartIndex::Active.
2020-05-02InsertEmpty now returns a pointer to the newly added elements to allow caller toNeil2-2/+25
efficiently set those elements.
2020-05-02Allow disabling automatically generated #define constants.Neil1-0/+4
This is for applications that want access to the structures and function definitions but define constants with enum or constexpr.
2020-05-02Feature [feature-requests:1349] Define CopyAllowLine only on Editor, not ↵Neil2-8/+1
subclass.
2020-05-01Make lambdas noexcept.Zufu Liu5-12/+12
2020-05-01Mark Decoration methods noexcept where reasonable.Neil2-34/+34
2020-05-01Change log.Neil1-0/+19
2020-05-01Bug [#2173]. Tweak font measurement so underscores more likely visible.Neil1-2/+2
2020-05-01Allow arbitrary length lines by using std::string instead of array.Neil1-16/+15
2020-05-01Add SCE_ERR_GCC_EXCERPT style for diagnostics introduced by GCC 9.0 likeNeil6-0/+31
73 | GTimeVal last_popdown; | ^~~~~~~~~~~~
2020-05-01Better diagnostics when script failsNeil1-1/+2
2020-05-01Replace deprecated function pango_script_for_unichar with g_unichar_get_script.Neil2-6/+6
2020-04-30Add a script to make it easier to test lexers on Unix.Neil1-0/+7
2020-04-30Clean up - make local function static and remove code that has no effect.Zufu Liu1-3/+1
2020-04-30Bug [#2019]. Fix buffer over-read with absolute reference.Zufu Liu3-5/+36
2020-04-30Fix line ends on example files.Neil3-188/+188
2020-04-30Treat \n and \r\n line ends the same after operands by setting style to comment.Neil1-3/+1
2020-04-30Retrieve errorlist and mmixal files with local line ends so match result filesNeil1-0/+2
when testing.
2020-04-30Add tests for mmixal lexer.Neil5-0/+176
2020-04-30Add tests for errorlist lexer.Neil3-0/+208
2020-04-28Fixed link.Neil1-1/+1
2020-04-27Remove documentation that is no longer correct.Neil1-1/+0
2020-04-27Added tag rel-4-3-3 for changeset 4c6aee014e72Neil1-0/+1
2020-04-23Updates for 4.3.3.rel-4-3-3Neil9-20/+18
2020-04-21Feature [feature-requests:1346]. Add lexer.as.comment.character property toDejan Budimir2-1/+13
change comment character.
2020-04-17Update Python versions for files that may involve PySide on Linux which requiresNeil11-6/+16
Python 2 still. On Windows, Python3 is used.
2020-04-17Update Python versions. Modules that are only used as top level scripts or fromNeil7-18/+13
scripts that require Python 3.6 have Python 2.x support removed. Modules that may be called from Python 2 for PySide require Python 2.7. Documented how to run scripts.
2020-04-17Making dependencies now requires Python 3.6+.Neil13-19/+25
2020-04-17Arithmetic between enums is deprecated so use constexpr instead of enum or cast.Neil2-10/+11
Added constexpr where reasonable.
2020-04-16Remove dead code.Neil1-7/+0
2020-04-16Specify that NotifyStyleNeeded is an override. Replace 0/NULL with nullptr.Neil1-5/+5
2020-04-13Use const, constexpr, noexcept, & nullptr. Reduce headers and use C++ versions.Neil1-42/+39
Replace ctype functions with lexlib functions that don't fail for non-ASCII.
2020-04-13Add test that illustrates all Python styles.Neil3-0/+127
2020-04-13Fix inverted test.Neil1-1/+1
2020-04-13Add test for differing styles between \r and \n.Neil1-0/+46
2020-04-13Hide implementation of EscapeSequence and use const. Add tests for escapeNeil3-13/+26
sequences.
2020-04-13Replace islower function and add tests for JavaScript regular expressions.Neil5-6/+17
2020-04-13Use constexpr and noexcept, reduce headers and use C++ versions, harmonize typesNeil1-12/+10
a bit.
2020-04-10Move static functions into unnamed namespace and simplify line counting.Neil1-21/+15
2020-04-10Updated documentation with currently used astyle parameters.Neil1-1/+3
2020-04-10Run astyle indenter over file.Zufu Liu1-11/+12
2020-04-10Feature [feature-requests:1346]. Convert long if-else block to switch.Zufu Liu1-250/+324
2020-04-10Remove non-standard whitespace.Zufu Liu1-5/+5
2020-04-10Fix warning from g++.Neil1-1/+1
2020-04-10Fix some warnings from Clang-Tidy.Neil1-6/+5
2020-04-10Bug [#2168]. Fix bug where 'µ' (Micro Sign) case-insensitively matches '?'.Neil2-3/+9