aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08Feature [feature-requests:#1041]. Highlight hex, octal, and binary numbers ↵Neil2-2/+8
in FreeBASIC which use the prefixes &h, &o and &b respectively. From Ebben.
2014-01-02Use a std::map for KeyMap to avoid custom iteration in favour of standardNeil2-18/+21
provided functionality.
2014-01-01Specify minimum Python version for scripts.Neil1-2/+1
2014-01-01Specify minimum Python version for scripts.Neil3-0/+3
2014-01-01Specify minimum Python version for scripts.Neil2-0/+2
2013-12-27Change log.Neil1-0/+4
2013-12-27Ensure caret is visible after scroll.Neil1-2/+2
2013-12-23Change log.Neil1-0/+5
2013-12-21rust: Implement nested block commentsSiegeLord1-18/+28
2013-12-21rust: Make the doc-comment detection more strict (and consistent with new ↵SiegeLord1-25/+18
Rust compiler rules)
2013-12-21rust: Highlight octal literalsSiegeLord1-0/+3
2013-12-21Fix whitespace in LexRust.cxxSiegeLord1-10/+10
2013-12-21rust: NULL is a valid Rust source character, so do not explicitly consider ↵SiegeLord1-4/+4
it as an error state.
2013-12-21rust: Fix highlighting of r#"""# raw string literal.SiegeLord1-3/+5
2013-12-22Avoid unsafe strcpy, strncpy, and strcat replacing with safer functions whichNeil14-75/+98
guaranty termination where possible.
2013-12-22Add tests for style attributes.Neil1-0/+89
2013-12-22Switch from char[] to std::string for simplicity and safety.Neil2-11/+7
2013-12-22Drop unused field 'name' and minimize scope of variable.Neil2-9/+4
2013-12-19Expose the EOLMode on the document object.Neil Hodgson3-0/+13
From John Ehresman.
2013-12-17Added DropSelectionN API.Neil8-0/+69
2013-12-17Change log.Neil1-0/+5
2013-12-17Bug [#1564]. Keyword followed immediately by quoted string continued keyword ↵Neil1-0/+2
style.
2013-12-16Change log fixed issue#.Neil1-1/+1
2013-12-16Add code for finding unsued values but leave commented out.Neil1-1/+7
2013-12-16Updated headers.Neil2-3/+2
2013-12-15Make single argument constructors explicit to avoid unexpected conversions.Neil25-40/+40
2013-12-15Format normalization - whitespace and braces made consistent.Neil39-401/+412
Parameter names added to method declarations.
2013-12-14Change log.Neil1-0/+12
2013-12-10Bug [#1562]. Clickable area of hotspots was off by half a character width.Christian Walther1-9/+13
2013-12-14Hide Coverity scan files.Neil1-0/+1
2013-12-12Mention responsive scrolling change for Cocoa in 3.3.7 release.Neil1-0/+3
2013-12-12Added tag rel-3-3-7 for changeset 5693714a8b0bNeil1-0/+1
2013-12-06Ensure find indicator correctly flipped on OS X 10.9.Neil Hodgson1-0/+9
2013-12-05Updates for 3.3.7.Neil7-14/+15
2013-12-04Change log.Neil1-0/+5
2013-12-03Bug [#1560]. Fix missing second one of adjacent indicators.Christian Walther1-1/+4
When there are two adjacent instances of the same indicator (but with different values), only the first of them was drawn. This is because when attempting to skip the gap between the first and second indicator, Editor::DrawIndicators would skip whatever run was there without checking whether it was actually a gap or already the next indicator.
2013-12-03Fix problems with appearance of newly scrolled content on OS X 10.9 where ↵Neil Hodgson3-2/+26
previously prepared content was shown.
2013-12-02Fixed a problem when lexing started at the start of a comment line so theNeil1-0/+1
previous character had not been set and was 0.
2013-12-01Change log.Neil1-0/+3
2013-11-26Change log.Unknown1-0/+6
2013-11-24Disable scroll wheel magnification by default since it causes visual garbage toNeil Hodgson1-0/+5
appear on OS X 10.9 when scrolling horizontally on a retina display.
2013-11-21Bug [#1554]. Bugs in interface file.Neil1-8/+5
2013-11-19Change log.Neil1-0/+4
2013-11-18Bash: fix comment detection inside a wordColomban Wendling1-1/+7
A comment in bash is defined as "[...] a word beginning with # causes that word and all remaining characters on that line to be ignored". A word is defined as "a sequence of characters considered as a single unit by the shell"; and there is a set of metacharacters defined as "a character that, when unquoted, separates words. One of the following: | & ; ( ) < > space tab". In practice, "foo#bar" is one single word, not "foo" followed by a comment. Trickier, "foo\;#bar" is also a single word, but "foo;bar" are 2 words and a control character. So, fix the Bash lexer to check whether the character preceding the hash sign to be either a metacharacter or part of a word. A maybe better fix would be to understand the Bash conception of a word, and analyze those, but it would require a large rewrite.
2013-11-18Bug [#1552]. Search string could be const.Neil2-2/+2
2013-11-18Added necessary header.Unknown1-1/+2
2013-11-18Add some tests for CellBuffer.Neil4-1/+152
2013-11-18Add some tests for DecorationList.Neil2-1/+45
2013-11-17Fix problem where cursor didn’t change over margin after showing a dialog.Neil Hodgson3-0/+11
2013-11-17Add unit tests.Neil Hodgson1-2/+13