aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2017-08-15Delaying a day due to change with Lua in SciTE.rel-4-0-0Neil2-3/+3
2017-08-11Include more of the 4.0.0 changes.Neil1-0/+22
2017-08-11Preparing for the 4.0.0 release.Neil8-20/+25
2017-08-11Stopped treating SC_TECHNOLOGY_DIRECTWRITERETAIN and SC_TECHNOLOGY_DIRECTWRITEDCNeil3-14/+12
as provisional.
2017-08-09Include 3.7.6 long term release.Neil1-3/+19
2017-08-07Bug [#1965]. Implement "fold", "fold.comment", and "fold.compact" properties.Zufu Liu2-2/+12
2017-08-02Switch default modifier key for rectangular selections from Ctrl to Alt on ↵Neil Hodgson4-11/+9
Linux.
2017-08-02Improve description of HideSelection.rhkramer1-1/+1
2017-07-29Bug [#1876]. Fix scrollbar and corner drawing and flickering of text.Neil Hodgson3-6/+40
2017-07-29SciTE changelog.Neil1-0/+7
2017-07-23Lexer style metadata uses arrays of struct literals but don't want noise ofNeil Hodgson1-2/+5
extra braces for each element so turn off warning.
2017-07-23Avoid warning although it appears incorrect.Neil Hodgson1-1/+1
2017-07-23Bug [#1959]. Avoid problems with changes with different versions of Qt.Neil Hodgson3-2/+7
2017-07-19SciTE change log.Neil Hodgson1-0/+5
2017-07-18Bug [#1958]. Make doCommandBySelector work but avoid double effect of 'delete'Neil Hodgson2-4/+12
key.
2017-07-18Bug [#1959]. Eliminate extra layer in signal emission for document.Justin Dailey2-62/+21
2017-07-17Fix signed / unsigned comparison warnings.Neil1-4/+4
2017-07-17Ensures tests build after change set 6352.Neil1-0/+2
2017-07-17Update types for Unix LP64 after changes to Sci_Position/Sci_PositionU.Neil Hodgson12-25/+27
2017-07-17Casts required for Unix LP64 after changes to Sci_Position/Sci_PositionU.Neil Hodgson2-14/+21
2017-07-17Mark overriding methods as "override".Neil Hodgson1-4/+4
2017-07-17Implement style metadata for some languages.Neil6-10/+338
Add some helper methods to SubStyles for finding style metadata of substyles.
2017-07-17Documentation for style metadata.Neil2-65/+249
2017-06-22Basic implementation helpers for style metadata.Neil8-21/+57
2017-06-22Add style metadata methods with null implementations.Neil9-0/+124
2017-06-22Merge Ilexer and ILexerWithSubStyles into ILexer4 to avoid need for versionNeil28-83/+126
checking in 4.0. Use lvRelease4 ID.
2017-07-13Update typedefs used for lexing.Neil1-2/+4
2017-07-12Add include needed to build with Qt 5.7.1 on Fedora 26 Linux.Neil Hodgson1-0/+1
2017-07-12Bug [#1957]. Add focusChanged(bool focused) signal.Justin Dailey3-0/+13
2017-07-09Updated styling to avoid Comic Sans - such an unfairly maligned font.Justin Dailey1-3/+3
2017-07-09Bug [#1955]. The data parameter to ILoader::AddData made const.Justin Dailey5-4/+8
2017-07-09Added BowPad.johnsonj1-0/+4
2017-07-07Bug [#1949]. Fix drawing failure in wrap mode for GTK+ 2.x.Neil2-1/+3
2017-07-07Redraw when overtype changed so caret change visible even when not blinking.Justin Dailey2-3/+11
Notify application with SC_UPDATE_SELECTION when overtype changed - previously sent SC_UPDATE_CONTENT.
2017-07-03SCE_BAAN_NUMBER was not highlighted, if followed by an operator... This Bug ↵oirfeodent2-1/+4
is fixed.
2017-07-04Dropping files fires the SCN_URIDROPPED notification instead of inserting text.Justin Dailey5-5/+34
2017-07-04Clean whitespace.Neil1-1/+1
2017-06-29Bug [#1951]. matlab lexer - dont use 'end' as a keyword when used as a index.John Donoghue2-0/+18
(ColouriseMatlabOctaveDoc) - set end as a number if within brackets ()[]{} that would allow end as an index rather than a keyword.
2017-07-01Include the 'updated' flags in the updateUi signal.Justin Dailey3-4/+8
Don't send updateUi for focus in.
2017-07-01Deprecate single phase drawing.Neil5-19/+37
2017-07-01Updated documentation to match changes to IDocument and ILexer.Neil1-18/+12
2017-06-22Update IDocument for version 4. Drop IDocumentWithLineEnd interface to just haveNeil9-37/+20
IDocument but with all the methods from IDocumentWithLineEnd. This removes version checking (for now). Use dvRelease4 ID. Drop mask argument to StartStyling.
2017-06-22Add DefaultLexer.h to header order.Neil1-0/+1
2017-06-22Add a DefaultLexer class which lexers can subclass if they want reasonableNeil24-18/+205
default implementations of the ILexerWithSubStyles interface methods.
2017-06-22Make all methods override, even pure ones to keep Clang happy.Neil Hodgson1-2/+2
2017-06-22Cast between Sci_Position.h types used for lexers and Position.h types used inNeil6-258/+316
core to allow the Sci_Position.h types to widen to 64-bits.
2017-06-22Mark methods implementing interface as "override".Neil1-9/+9
2017-06-22Fix printf formatting with correct format specifier and cast to allow argumentNeil1-1/+1
be 64-bit.
2017-06-22Use same types for CheckLevelCommentLine to allow 64-bit Sci_Position.Neil1-1/+1
2017-06-19The default encoding is now UTF-8.Neil3-10/+13