aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2013-03-27Item order and spelling.rel-3-3-0nyamatongwe1-21/+21
2013-03-27Updates for version 3.3.0.nyamatongwe7-18/+62
2013-03-27Spelling in comments.nyamatongwe1-2/+2
2013-03-26Detect resizes on the ScintillaView so that text is rewrapped.nyamatongwe1-1/+4
2013-03-24Fixed painting of margin view when lines wrapped inside paint of text view.nyamatongwe1-0/+5
2013-03-24Extra cast to avoid warning from g++ 4.8.nyamatongwe1-1/+1
2013-03-20Add ScrollRange feature.nyamatongwe5-11/+73
2013-03-18Bug: [#1454]. Reject raw strings when character after " is in " )\\\t\v\f\n".nyamatongwe1-1/+3
See C++11 standard 2.14.5 String literals.
2013-03-18Bug: [#1455]. Fix unfolding when new line inserted.nyamatongwe1-0/+5
2013-03-16Fix margin drawing with Cocoa when always-visible scrollbars turned on.nyamatongwe1-1/+3
2013-03-16Bug: [#1453]. Make subsequent tab markers visible on GTK+.nyamatongwe1-6/+3
Patch from Mark Yen at ActiveState with code simplified by Neil.
2013-03-16Updated issue tracker links.nyamatongwe1-2/+2
2013-03-15Use an NSScrollView on Cocoa for kinetic scrolling and hiding scrollbars ↵nyamatongwe8-410/+477
unless wanted. Also affects platform-independent code.
2013-03-15Added type safety by using InnerView where applicable instead of generic NSView.nyamatongwe2-6/+7
2013-03-15Ensure all fields initialised.nyamatongwe1-5/+9
2013-03-15Remove dead code.nyamatongwe2-11/+0
2013-03-15Removed owner property as it is not used.nyamatongwe2-5/+0
2013-03-15Simplify calculation of visible line for point.nyamatongwe1-4/+2
2013-03-13Implement high-priority idle work on Cocoa to avoid abandoning paints in ↵nyamatongwe5-3/+68
some situations. Rename IdleStyling to IdleWork.
2013-03-13Call UpdateUI before blit scrolling so caret change will have been processednyamatongwe1-0/+1
and brace highlighting updated before painting.
2013-03-13Add different types of task to StyleNeeded mechanism, renaming to WorkNeeded.nyamatongwe3-23/+31
Ask to perform update UI work for some selection moves.
2013-03-13Handle test and reset of needUpdateUI in NotifyUpdateUI so less chance of ↵nyamatongwe2-14/+13
desync.
2013-03-11Bug [#1412]. Recognise a JavaScript RegExp literal in more situations.nyamatongwe1-5/+3
2013-03-10Make property readonly to avoid potential ownership/lifetime issues.nyamatongwe1-1/+1
2013-03-10Extract Window::Cursor enum -> NSCursor* mapping so can be reused.nyamatongwe1-26/+27
2013-03-10Fix spelling in comments. Add missing comment.nyamatongwe2-4/+7
2013-03-10Remove remnants of Carbon.nyamatongwe2-7/+2
2013-03-07Bug: [#482]. Refix to make /// comment not affect folding of following /* ↵nyamatongwe1-3/+7
comment.
2013-02-25Editor: SCI_LINESCROLL: treat columns as signedMook2-2/+10
2013-02-28Return last display line for document lines beyond document end.nyamatongwe1-1/+1
2013-02-28Removed unnecessary code.nyamatongwe1-6/+2
2013-02-26Spelling.nyamatongwe1-1/+1
2013-02-26Added tag rel-3-2-5 for changeset 74f6ed8c5737nyamatongwe0-0/+0
2013-02-26Mention provisional features.rel-3-2-5nyamatongwe1-1/+3
2013-02-26Added Unicode support in StyleContext and LexAccessor::LineEnd to change list.nyamatongwe1-0/+6
2013-02-25Updated change list with last fix.nyamatongwe1-0/+3
2013-02-24Less intense version of previous change: just mark the view for drawing ↵nyamatongwe1-1/+1
instead of drawing.
2013-02-24Fix problem where abandoned paints may not cause redraw.nyamatongwe1-1/+3
2013-02-23Bug: [#1447]. Interpret PHP within HTML comments.nyamatongwe1-2/+1
2013-02-22Fixed wording.nyamatongwe1-2/+2
2013-02-22Listed changes for 3.2.5.nyamatongwe2-2/+39
2013-02-22Prepare for 3.2.5.nyamatongwe7-16/+22
2013-02-22Longer name for new errorlist lexer state.nyamatongwe3-3/+3
2013-02-22Define the maximum number of margins in Scintilla.iface.nyamatongwe6-12/+15
2013-02-21Feature: [#978]. Update preprocessor defines upon encountering an #undef ↵nyamatongwe2-3/+20
directive. From Alpha.
2013-02-21Fixed outdated comment.nyamatongwe1-2/+1
2013-02-20Recognise GCC include path diagnostics that appear before an error.nyamatongwe3-0/+6
2013-02-20Removed function that is no longer used.nyamatongwe1-5/+0
2013-02-20Bug: [#1447]. Don't interrupt HTML comment for XML Processing Instruction.nyamatongwe1-0/+1
2013-02-18Drop -Wno-long-long as it makes no difference on current systems.nyamatongwe1-2/+2
Add --std=c++0x when compiling with clang as would like to move to c++11. clang only works on new distributions so the option will be present when useful.