aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
AgeCommit message (Collapse)AuthorFilesLines
2018-01-28Use std::end when filling arrays as reduces chance of mistake.Neil1-0/+1
2017-09-14Normalize whitespace.Zufu Liu5-7/+6
2017-09-14Remove automatically generated line end whitespace.Zufu Liu1-2/+2
2017-08-28New header ILoader.h defines ILoader interface as it does not belong in ↵Neil1-0/+1
ILexer.h.
2017-06-22Add DefaultLexer.h to header order.Neil1-0/+1
2017-06-12Removed unused functions and methods from Platform.h.Neil1-0/+1
Replaced Platform::Clamp with Sci::clamp but will later change this to std::clamp once on full C++17 compilers. Drop MouseButtonBounce workaround for very early GTK+/Linux.
2017-05-21Use unique_ptr and forward_list to regularize PerLine data structures.Neil1-0/+1
2017-05-21Make SparseVector work with move-only types.Neil1-0/+1
Define UniqueString as a move-only string and use in a SparseVector for ContractionState. Remove SparseVector method specializations that are no longer needed.
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-0/+4
where it may be needed in the future.
2017-02-15Automatically add new lexers to Xcode project in LexGen.py.Neil3-1/+141
2017-02-11Add <iostream> to header order.Neil1-0/+1
2017-02-01Bug [#1901]. Make trackpad scrolling work on Wayland.John Flatness1-0/+1
2016-11-16Extend header checking to include directory and add Sci_Position.h.Neil2-1/+3
2016-10-27Add stdint.h to header ordering in case used in future.Neil1-0/+1
2016-10-21Initial accessibility support for the GTK platform v7Colomban Wendling1-0/+3
2016-10-18Script for checking that all headers are included in a standard order.Neil1-0/+92
2016-10-18Add SparseVector template as a new data structure for storing per-line dataNeil1-0/+6
which is 0 or NULL for most lines.
2016-09-17Reset the comment after use so that it isn't applied to other features.Neil1-0/+2
2016-05-16Bug [#1829]. Include comments for enu and lex definitions.Kasper B. Graversen1-1/+2
2016-04-08Update header ordering to cover all headers used in Scintilla and reorderNeil Hodgson1-0/+12
in Cocoa source consistently.
2016-03-25Since stddef.h is the most basic header, defining size_t, move it first.Neil1-1/+1
2015-11-20Remove line end whitespace.Neil5-33/+33
2015-09-21Automate updating of version numbers in the Scintilla framework.Neil Hodgson2-1/+24
2015-08-26Use current CSS theming calls instead of deprecated gtk_widget_override_font.Neil1-0/+1
2015-08-12Read multiline LexerModule declarations and extract lexer name -> lexer ID andNeil1-5/+31
lexer ID -> fileName dictionaries.
2015-07-27Add Position.h as a place-holder and to allow #include "Position.h" in source.Neil1-0/+1
2015-06-02Provide downloads from scintilla.org to avoid degradation of SourceForge.Neil1-2/+2
2015-02-22Implement VK_HANJA for Korean on Windows.Neil1-0/+1
2015-02-02Added <deque> to order.Neil1-0/+1
2014-12-08Avoid warnings from clang about calling abs with float arguments.Neil1-0/+1
2014-10-02Allow using C++11 <regex> for searches as a provisional feature.Neil1-0/+1
2014-07-23Add PerLine.h to the header order.Neil1-0/+1
2014-07-08Split out EditModel, MarginView, and EditView classes into separate files.Neil1-0/+3
2014-05-24Header include statements are now in a standardised order with that orderNeil1-0/+128
defined in scripts/HeaderOrder.txt.
2014-04-17Fix Python 3.x compatibility.Neil1-4/+7
2014-03-18Extact credits from hsitory page with code.Neil1-0/+29
Normalize credit format. Make list same as one shown in about box.
2014-02-05Fix to work when there are no provisional features.Neil1-1/+4
2014-01-14Make HFacer callable from other Python code and call it from LexGen soNeil2-14/+19
LexGen is always woking on up-to-date headers.
2014-01-01Specify minimum Python version for scripts.Neil2-0/+2
2013-12-16Add code for finding unsued values but leave commented out.Neil1-1/+7
2013-08-01Bug [#1506]. In some locales Visual C++ fails with UTF-8 in string literals.Neil1-1/+4
Fixed by using hex escapes for non-ASCII.
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil1-0/+122
case conversion of Unicode text in accordance with Unicode.
2013-07-03Restructured LexGen.py by moving discovery code into ScintillaData.py andNeil5-242/+243
SciTE regeneration into ../scite/scripts/RegenerateSource.py. FileGenerator.py adds ReplaceREInFile function.
2013-07-01Added CharacterCategory.Neil1-0/+35
2013-07-01Move non-platform-specific scripts into the scripts directory.Neil3-0/+418
Use FileGenerator module for file generation instead of code in each script.
2013-07-01Refactoring Python scripts into scripts directory.Neil1-0/+150