aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2015-10-12Implement Swap in SelectionRange to avoid warnings.Neil3-1/+6
2015-10-08Optimize image files.Neil5-0/+0
2015-10-08Make the documentation more readable on phones.Neil10-0/+10
2015-09-29Reindented code which had become a mess.Neil Hodgson1-45/+45
2015-09-29Removed unreachable code.Neil Hodgson1-1/+0
2015-09-29Mark unused parameters in Objective-C methods with a pragma.Neil Hodgson2-0/+6
2015-09-29ScreenMax no longer depends on window so do not pass as argument.Neil Hodgson1-3/+3
2015-09-29Mark local functions in lexers as static.Neil Hodgson4-5/+5
2015-09-29Mark local functions as static.Neil Hodgson4-7/+7
2015-09-27Change log for SciTE.Neil1-0/+4
2015-09-27Simplify casting by using static_cast instead of reinterpret_cast, glib macrosNeil2-29/+30
for passing integer values to callbacks, and avoiding casts by making functions follow prototypes exactly.
2015-09-27Updated README to mention C++11 for SciTE.Neil1-5/+21
2015-09-26RTTI is a part of standard C++ so don't turn it off.Neil1-1/+1
2015-09-26Centre whitespace dot when dot is larger than 1 pixel.Neil2-1/+5
2015-09-26Indentation guides do not affect background drawing so omit from condition.Neil1-2/+1
2015-09-26Add parentheses to fix warning from Clang.Neil Hodgson1-2/+2
2015-09-26Whitespace may be made visible just in indentation.nkmathew7-11/+28
2015-09-25Updated as recommended by Xcode 7.Neil Hodgson4-4/+10
2015-09-25Replace reinterpret_cast with static_cast where possible.Neil2-45/+45
2015-09-25Remove null occurrences of reinterpret_cast which just converted HDC to HDC.Neil1-15/+15
2015-09-23When SC_MARK_UNDERLINE if not assigned to a margin, stop drawing the whole line.Neil5-34/+56
Optimise drawing of markers that appear in the text area.
2015-09-23Optimise drawing by only drawing affected lines when markers shown in the text.Neil1-36/+40
2015-09-23Change log.Neil1-0/+4
2015-09-22Support using Visual C++ 2015 to target Windows XP.Neil1-2/+7
2015-09-21Mention Cocoa version numbers.Neil Hodgson1-0/+11
2015-09-21Automate updating of version numbers in the Scintilla framework.Neil Hodgson2-1/+24
2015-09-21Add short version string to Scintilla framework to specify the release version.Neil Hodgson1-1/+3
The current version value (CFBundleVersion) is a build version.
2015-09-16Annotate change with bug report.Neil1-0/+1
2015-09-15Added tag rel-3-6-1 for changeset 59165fbb6b9dNeil1-0/+1
2015-09-10Updates for 3.6.1.rel-3-6-1johnsonj7-15/+16
2015-09-10Change log.johnsonj1-0/+3
2015-09-10Handle reconversion when requested by IME.johnsonj1-0/+96
2015-09-10Fix IME caret movements for emoji.johnsonj2-2/+2
2015-09-09Change log.Neil1-0/+8
2015-09-09Allow '0' as the line number in GCC errors as some tools report whole fileNeil1-1/+1
errors as line 0.
2015-09-05Remove #if sections which are not required for GTK+ 2.18.nyamatongwe2-77/+4
2015-09-05With the minimum GTK+ version now 2.18, remove #if conditions required for oldernyamatongwe2-31/+2
versions of GTK+.
2015-09-04Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.johnsonj6-7/+16
2015-09-04Bug [#1757]. Treat CRLF as two characters in SCI_COUNTCHARACTERS.Neil3-2/+12
2015-09-03Removing support for old GTK+ versions. Minimum GTK+ is 2.18 with glib 2.22.Neil3-8/+6
2015-09-02Schedule the timer after setting its tolerance to avoid scheduling twice.Neil Hodgson1-5/+6
2015-08-28Implement some ANSI escape sequences to change foreground colour and intensity.Neil4-7/+124
2015-08-26Removed setting list colours on GTK+ 3.16+ as no longer appears needed.Neil2-1/+7
2015-08-26Use current CSS theming calls instead of deprecated gtk_widget_override_font.Neil2-2/+43
2015-08-26On GTK+ 3.x, fix height of lines in autocompletion lists to match the font.Neil2-1/+8
2015-08-25Encapsulate HIMC in a small class to ensure it is always freed.Neil1-32/+41
2015-08-24Simplify filling virtual space and avoid any side effects that may be caused byjohnsonj1-4/+9
calling AddCharUTF.
2015-08-23Change log.Neil1-0/+4
2015-08-23Merged with Cocoa changes.Neil1-51/+29
2015-08-23In C++, new fails with an exception instead of returning NULL so remove handlingNeil Hodgson1-43/+29
of NULL SurfaceImpl objects and replace heap with stack to simplify code.