| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2013-11-18 | Bash: fix comment detection inside a word | Colomban Wendling | 1 | -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-17 | Highlight comment doc keywords at end of document. | Neil | 1 | -1/+1 | |
| 2013-11-17 | Bug [#1551]. Doxygen keywords @code{.fileExtension} and @param[in,out] are ↵ | Neil | 1 | -1/+7 | |
| split. From Alpha. | |||||
| 2013-11-15 | CMake: fix continuation after empty comments | Colomban Wendling | 1 | -9/+5 | |
| Fixes [bugs:#1550]. | |||||
| 2013-11-12 | Fix out-of-bounds bug. Use symbolic constants instead of numbers. | Neil Hodgson | 1 | -6/+9 | |
| From SiegeLord. | |||||
| 2013-11-07 | Feature [feature-requests:#962]. Improvement of folding for Fortran. | Neil | 1 | -24/+79 | |
| Treats "else" as fold header. From darmar. | |||||
| 2013-11-07 | Normalize indentation to tabs. | Neil | 1 | -45/+45 | |
| 2013-11-04 | Remove local functions that are not used. | Neil | 5 | -40/+0 | |
| 2013-10-28 | Allow single quote digit separators for C++14. | Neil | 1 | -0/+1 | |
| 2013-10-28 | Added lexical class for user defined literals in C++11. | Neil | 1 | -4/+19 | |
| 2013-10-19 | Remove shadowing declarations to avoid warnings. | Neil | 1 | -2/+2 | |
| 2013-10-18 | Feature [feature-requests:#1026]. DMAP lexer added. | Neil | 1 | -0/+228 | |
| From Mark Robinson. | |||||
| 2013-10-17 | Avoid namespace pollution by making lexer functions static. | Neil | 2 | -4/+4 | |
| 2013-10-17 | Feature [feature-requests:#1025]. Support multiline comments in FreeBASIC. | Neil | 1 | -16/+72 | |
| From Erik. | |||||
| 2013-10-17 | Bug [#1538]. PP-line comments lost from EOL string. | Neil | 1 | -1/+1 | |
| From Alpha. | |||||
| 2013-10-17 | Fix sign warning in debug code. | Neil | 1 | -1/+1 | |
| 2013-10-10 | Bug [#1528]. Perl: POD problems with multibyte characters. | Neil | 1 | -4/+4 | |
| From Colomban Wendling and Kein-Hong Man. | |||||
| 2013-10-09 | Bug [#1528]. Perl: multibyte character problems. | Neil | 1 | -8/+12 | |
| From Colomban Wendling and Kein-Hong Man. | |||||
| 2013-10-09 | Feature [feature-requests:#1025]. Better support for string literals and ↵ | Neil | 1 | -90/+124 | |
| Unicode. From Thomas Linder Puls. | |||||
| 2013-10-08 | Feature [feature-requests:#1024]. Lexer added for Rust language. | Neil | 1 | -0/+768 | |
| From SiegeLord. | |||||
| 2013-09-26 | Feature [feature-requests:#1020]. Fold 'create view' statements. | Neil | 1 | -31/+131 | |
| Fold on the 'AS' ... ; in `create view [name] as ... ;' From Eric Promislow. | |||||
| 2013-09-22 | Stricter checking for ctags lines in errorlist lexer. | Neil | 1 | -3/+10 | |
| 2013-09-05 | Added SCI_GETPRIMARYSTYLEFROMSTYLE. | Neil | 1 | -0/+3 | |
| 2013-09-05 | Bug [#1520]. Make SCI_GETSTYLEFROMSUBSTYLE work for secondary styles. | Neil | 1 | -1/+3 | |
| 2013-09-05 | Update Pascal lexer keywords. | Marko Njezic | 1 | -10/+11 | |
| 2013-09-03 | Added GetStyleFromSubStyle. | Neil | 1 | -0/+3 | |
| Tests for this and other sub styles methods. | |||||
| 2013-08-17 | Fix CoffeeScript styles usage | Colomban Wendling | 1 | -71/+71 | |
| Properly use SCE_COFFEESCRIPT_..., not SCE_C_..., even if they have the same value. | |||||
| 2013-08-23 | Updated information on script location. | nyamatongwe | 1 | -2/+2 | |
| 2013-08-21 | Feature: [feature-requests:#1008]. Lexer added for KVIrc script. | Neil | 1 | -0/+473 | |
| From OmegaPhil. | |||||
| 2013-08-08 | Avoid warnings for uninitialized strings. | Neil | 3 | -1/+5 | |
| 2013-08-07 | Ensure strings initialised to avoid warnings. | Neil | 4 | -4/+4 | |
| 2013-08-03 | Initialise string to avoid warnings. | Neil | 1 | -1/+1 | |
| 2013-08-03 | Bug [#1509]. ';' not styled as an operator. | Neil | 1 | -14/+1 | |
| From Eric Promislow. | |||||
| 2013-08-03 | Bug [#1508]. Coloring for enumeration member malfunctions. | Neil | 1 | -4/+9 | |
| From Pavel Bulochkin. | |||||
| 2013-07-26 | Avoid a switch fall-through even though it makes no difference to behaviour. | Neil | 1 | -0/+1 | |
| 2013-07-23 | Fix potential write beyond allocation found by Visual C++ analyzer. | Neil | 2 | -2/+2 | |
| 2013-07-22 | Bash: Fix handling of quoted HereDoc delimiters | Colomban Wendling | 1 | -2/+12 | |
| 2013-07-21 | Removed functions that had never been used - looks like they had been copied | Neil | 1 | -25/+0 | |
| from LexAda. | |||||
| 2013-07-21 | Replace all instances of isascii with Scintilla-specific IsASCII. | Neil | 27 | -67/+67 | |
| iasascii is not part of ISO C or C++ but is a BSD extension so caused problems when compiling in strict compliance mode. | |||||
| 2013-07-07 | Bug: [#1496]. Name of ASN1 LexerModule was misspelt lmAns1 instead of lmAsn1. | Neil | 1 | -1/+1 | |
| 2013-07-06 | Bug: [#1495]. CoffeeScript comment-block lexing is wrong. | Neil | 1 | -22/+14 | |
| From Eric Promislow. | |||||
| 2013-07-06 | Removed static functions that have never been used. | Neil | 1 | -15/+0 | |
| 2013-07-03 | Trigger SCE_ERR_PERL only when "at" and "line" are far enough apart | nyamatongwe | 1 | -2/+3 | |
| to fit a file name as it was being triggered for MSVC errors containing "at line". | |||||
| 2013-07-01 | Use CharacterCategory | kudah | 1 | -20/+17 | |
| 2013-06-30 | Updated A68K lexer from web site. | Neil | 1 | -60/+89 | |
| Fixes warning about duplicate clauses in test and variable scope. | |||||
| 2013-06-29 | Simplify code so that it is understood by cppcheck, avoiding warnings. | Neil | 2 | -2/+2 | |
| 2013-06-29 | Avoid warning from Visual C++. | Neil | 1 | -5/+5 | |
| 2013-06-29 | Bug: [#1483]. Fix problems with character/byte indexing for UTF-8 and DBCS. | Neil | 1 | -58/+58 | |
| From Kein-Hong Man. | |||||
| 2013-06-27 | Bug: [#1491]. Regular expression detection code appeared incorrect. | nyamatongwe | 1 | -4/+13 | |
| 2013-06-26 | Simplify label handling code and avoid checking to end of line. | nyamatongwe | 1 | -22/+5 | |
| From Kein-Hong Man. | |||||
