aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2017-01-24Remove casts from id to Objective C object as they are not needed. Use saferNeil2-32/+32
static_cast instead of reinterpret_cast between void* and id or Objective C object.
2017-01-24Use correct signatures for pattern draw and release functions and avoidNeil1-6/+5
reinterpret_cast
2017-01-23Use safer static_cast instead of reinterpret_cast when converting FontID toNeil1-11/+11
QuartzTextStyle.
2017-01-22Display block caret over the character at the end of a selection to be similarJohn Ehresman2-1/+11
to other editors.
2017-01-22Correctly color code deleted lines starting with "--"Sven Strickroth2-1/+6
This fixes the coloring of deleted lines in which starts with "--" such as closing HTML comments ("-->"). Signed-off-by: Sven Strickroth <email@cs-ware.de>
2017-01-22Simplify initialising and reinitialising.Neil1-6/+2
2017-01-22Remove extraneous "void".Neil2-2/+2
2017-01-19Bug [#1896]. Avoid unnecessary unfolding when a deletion does not include a lineNeil2-2/+3
end.
2017-01-19Bug [#1896]. Ensure folding consistent when fold header added above folded part.Neil2-1/+5
2017-01-19Bug [#1902]. Require Matlab block comment start/end to be alone on a line.Neil2-9/+28
2017-01-14Require the first line to start with "#!" to be treated as a shebang comment.jedailey2-2/+7
2017-01-14Removed return type from AddSelection and SetSelection.Neil2-6/+6
2017-01-04Mark some const methods as const.Neil4-4/+4
2017-01-04Change log for SciTE.Neil1-0/+4
2017-01-04Use new simplified API for showing menu on GTK+ 3.22 as old API was deprecated.Neil2-3/+12
2017-01-04Use newer APIs for screen/monitor/display on GTK+ 3.22 as old APIs deprecated.Neil1-7/+35
These are used to ensure popup windows are fully on-screen but after this change, this doesn't always work on GTK+ 3.22 / Wayland.
2017-01-04Don't set window background on GTK+ 3.22 as this is deprecated.Neil1-1/+3
2017-01-04Fix display of autocompletion lists and calltips on GTK+ 3.22 on Wayland byNeil3-1/+11
setting the owning window by calling gtk_window_set_transient_for.
2017-01-02Change log for Python lexer.Neil1-0/+12
2016-12-22Don't style @1 as a decoratorJohn Ehresman1-1/+1
2016-12-22Allow Python 3 unicode identifiersJohn Ehresman1-8/+34
2016-12-22Recognize f as a string prefixJohn Ehresman1-3/+11
2016-12-29Added tag rel-3-7-2 for changeset e02540a30974Neil1-0/+1
2016-12-27Updates for 3.7.2.rel-3-7-2Neil8-16/+17
2016-12-26Change log for previous 5 accessibility changes from Columban.Neil1-0/+4
2016-12-18GTK: Ensure styles are valid when retrieving them for accessibility purposesColomban Wendling2-3/+10
2016-12-18GTK: Fix reporting deletion length in the accessibleColomban Wendling2-2/+10
We cannot compute the length in characters after the text has been deleted, so we need to compute it in BEFOREDELETE. However, we need to emit the signal once the buffer has actually changed, so we need to cache the value in-between those events.
2016-12-18GTK: Fix off-by-one error in accessible attribute runsColomban Wendling1-3/+3
2016-12-18GTK: Fix accessible object lifetime on GTK < 3.8Colomban Wendling1-20/+20
2016-10-24GTK: Add some documentation on accessible object reference ownershipsColomban Wendling2-0/+23
2016-12-13SciTE change log.Neil1-0/+5
2016-12-09Warning suppression and documentation of previous change 6082.Neil2-1/+6
2016-12-09Use double coordinates instead of float in some cases as float ran out ofNeil5-7/+24
precision in long documents. This meant that individual lines could not be selected by mouse when the document exceeded 16.7 million lines.
2016-12-09Drop language compliance flags that have become default.Neil1-1/+1
2016-12-08Bug [#1891]. Fix crash on view destruction with macOS 10.12.2.Chinh Nguyen2-0/+5
2016-12-01Bug [#1887]. Define QT_WS_MAC or QT_WS_X11 under qt5 from WS_OS_* macrosJohn Ehresman2-1/+16
2016-06-17Bug [#1888]. Only invalidate selection when using SCI_SETSELECTIONN api'sJohn Ehresman3-32/+52
2016-12-07Using alternating row shades for tables and contrasting headers.Neil1-102/+132
Fixed some inconsistent styling. Use circles for bullets. Explain int type more accurately.
2016-12-07Character set availability made into a table.johnsonj1-58/+120
2016-12-04Download size updated.Neil1-1/+1
2016-12-04Added tag rel-3-7-1 for changeset a7dfda6c8585Neil1-0/+1
2016-12-04Documentation cosistency.rel-3-7-1Neil1-2/+2
2016-12-01Ensure application can override right mouse button by returning FALSE.Neil1-0/+1
2016-12-01Updating make dependencies.Neil2-19/+25
2016-12-01Sorting list of lexers for 'make deps' to minimize changes.Neil2-23/+42
Rerun make deps to cover recntly added files.
2016-11-30Typo.Neil1-1/+1
2016-11-30Updates for 3.7.1.Neil8-19/+18
2016-11-30Updated API to match conventions.Neil1-1/+1
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam14-40/+214
2016-11-29Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.Tse Kit Yam11-21/+255