aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2013-05-19Fix display of multi-byte Unicode character at line start.rel-3-3-2nyamatongwe1-1/+0
2013-05-19Don't dereference character string when length is 0. May be a NULL pointernyamatongwe1-1/+1
and cause a crash and shouldn't read beyond length anyway.
2013-05-17Fix fold all to show lines instead of going past end which then failed.nyamatongwe1-1/+1
2013-05-09* Literate Haskell supportkudah1-0/+1
* CPP highlighting is disableable * CPP is now correctly colored when inside comments and strings * Some bugs with incremental lexing fixed * Indented imports folding is now undisableable
2013-05-07Replace X.data() with &X[0] to allow building with old releases of Visual C++.nyamatongwe1-1/+1
2013-05-05Since new throws an exception on failure, remove testing of result.nyamatongwe3-18/+8
2013-05-05Removing support for Visual C++ 2005 and 6.0.nyamatongwe1-1/+0
2013-05-05Removed nethods that are no longer used and are less safe than alternatives.nyamatongwe3-43/+6
2013-05-04Replacing raw pointers and allocations with std::vector.nyamatongwe2-82/+38
2013-05-04Replacing raw pointers and allocations with std::string.nyamatongwe2-45/+18
2013-05-04Replacing raw pointers and allocations with std::string.nyamatongwe3-20/+14
2013-05-03Replacing raw pointers and allocations with std::vector.nyamatongwe2-24/+14
2013-05-03Moved allocation of data owned by Action into Action::Create.nyamatongwe2-14/+12
Made more variables const.
2013-05-02Simplifying XPM code and avoiding bare allocations.nyamatongwe2-79/+36
2013-05-02Removing XPMSet class as no longer used.nyamatongwe2-107/+0
2013-05-02Replacing raw pointers and allocations with std::vector and std::map.nyamatongwe5-144/+123
2013-05-02Replacing raw pointer and allocation with std::string.nyamatongwe2-14/+10
2013-05-01Removed SVector.h and all references as it is no longer used.nyamatongwe1-123/+0
2013-05-01Replacing raw pointers and allocations with std::vector and std::string.nyamatongwe2-0/+23
2013-05-01Replacing raw pointer and allocation with std::string.nyamatongwe1-47/+16
2013-04-28Use std::vector for list of watchers instead of manual management.nyamatongwe2-58/+35
2013-04-28Removed unused members.nyamatongwe1-3/+0
2013-04-26Bug: [#1467]. Don't change scroll position when window is zero size.nyamatongwe1-0/+3
2013-04-24Cosmetic: remove line-end whitespace.nyamatongwe2-23/+23
2013-04-24Added automatic folding options.nyamatongwe2-4/+82
2013-04-21Implement commonly needed folding methods based on code from SciTE.nyamatongwe2-27/+114
2013-04-19Remove unused methods.nyamatongwe6-112/+0
2013-04-19Using std::fill instead of a loop is much faster. As much as 4x on a large ↵nyamatongwe5-2/+9
block.
2013-04-18Ensure properties from earlier files survive: LexCPP defines some common ↵nyamatongwe1-1/+2
properties.
2013-04-17When switching documents, reset input composition as otherwise get mixture ↵nyamatongwe1-1/+1
of state from both documents.
2013-04-17Disallow undo and redo when not collecting undo as it is likely that the ↵nyamatongwe1-2/+2
document is not in the state at the end of the undo history and performing undo will not be able to return to a previous state.
2013-04-16Add indicator INDIC_COMPOSITIONTHICK, a thick low underline, to mimic annyamatongwe1-0/+3
appearance used for Asian language input composition.
2013-04-16Move selections with virtual space more reasonably when real spaces inserted atnyamatongwe1-4/+8
their location by converting virtual space to real position changes up to the amount of virtual space. This allows multi-typing to work when two carets are located in virtual space on one line.
2013-04-15Existing code fills 0 length ranges and ranges after document end so simplynyamatongwe1-2/+2
return instead of throwing exceptions.
2013-04-15RunStyles can be corrupted by filling 0 length ranges and ranges that go ↵nyamatongwe2-0/+38
past end so throw std::invalid_argument exceptions for these conditions. Provide a Check method to validate the consistency of a RunStyles and throw std::runtime_error if corruption is detected.
2013-04-09Slightly better behaviour for regular expression search in DBCS: ensure end ofnyamatongwe1-0/+2
match range is not in the middle of a character.
2013-04-09Automate updating download links in script.nyamatongwe1-0/+19
2013-04-02Fix calltip position for Cocoa using ScrollView.scitex-3-3-0nyamatongwe1-0/+5
2013-04-02Fix autocompletion position for Cocoa using ScrollView.nyamatongwe1-0/+5
2013-04-02Fix automatic scrolling on Cocoa.nyamatongwe1-0/+2
2013-04-01Extract effect of choosing an autocompletion entry so it can be reused for bothnyamatongwe2-18/+12
user choice and single element list automatic insertion.
2013-04-01Feature [#981]. Added autocompletion order property to allow list to be orderednyamatongwe3-9/+123
according to container preference but still allowing selection by typing. From Alpha.
2013-03-20Add ScrollRange feature.nyamatongwe2-11/+58
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-15Use an NSScrollView on Cocoa for kinetic scrolling and hiding scrollbars ↵nyamatongwe4-54/+141
unless wanted. Also affects platform-independent code.
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 ↵nyamatongwe2-2/+2
some situations. Rename IdleStyling to IdleWork.
2013-03-13Add different types of task to StyleNeeded mechanism, renaming to WorkNeeded.nyamatongwe2-18/+26
Ask to perform update UI work for some selection moves.