<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/lexers, branch rel-3-3-1</title>
<subtitle>Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/'/>
<entry>
<title>Haskell lexer</title>
<updated>2013-04-09T02:53:49+00:00</updated>
<author>
<name>kudah</name>
<email>devnull@localhost</email>
</author>
<published>2013-04-09T02:53:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=7e5ed4ea8e8206b6773faabf2f2a998b30963535'/>
<id>7e5ed4ea8e8206b6773faabf2f2a998b30963535</id>
<content type='text'>
* Fixed line counting
* Fixed string escaping
* Pragmas ending at start of the line are rejected (GHC only accepts pragmas with the end indented further)
* Copied Python's Folder
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fixed line counting
* Fixed string escaping
* Pragmas ending at start of the line are rejected (GHC only accepts pragmas with the end indented further)
* Copied Python's Folder
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed few things in haskell lexer</title>
<updated>2013-04-07T16:35:40+00:00</updated>
<author>
<name>kudah</name>
<email>devnull@localhost</email>
</author>
<published>2013-04-07T16:35:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=99f3386fc82509c0dd3fee394497b2bd9dcd0274'/>
<id>99f3386fc82509c0dd3fee394497b2bd9dcd0274</id>
<content type='text'>
* MagicHash now applies to literals.
* MagicHash is now only allowed at the end of identifier.
* SafeHaskell imports are now highlighted (lexer.haskell.import.safe)
* TemplateHaskell quoted names are now highlighted
* Constructors promoted to types are now highlighted
* Promoted tuples, lists, and operator constructors are now highlighted.
* Qualified constructor are now properly highlighted as constructors, not operators.
* Capital and qualified names in import lists are now properly highlighted.
* A.$b is not properly highlighted as an operator and an identifier, not just operator.
* String and preprocessor continuations now work with CRLF.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* MagicHash now applies to literals.
* MagicHash is now only allowed at the end of identifier.
* SafeHaskell imports are now highlighted (lexer.haskell.import.safe)
* TemplateHaskell quoted names are now highlighted
* Constructors promoted to types are now highlighted
* Promoted tuples, lists, and operator constructors are now highlighted.
* Qualified constructor are now properly highlighted as constructors, not operators.
* Capital and qualified names in import lists are now properly highlighted.
* A.$b is not properly highlighted as an operator and an identifier, not just operator.
* String and preprocessor continuations now work with CRLF.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix crash in 64-bit builds due to unsigned underflow.</title>
<updated>2013-04-05T06:19:30+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-04-05T06:19:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=f71d19fc8b7a43291e387b0111c32c7dd4507a52'/>
<id>f71d19fc8b7a43291e387b0111c32c7dd4507a52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improvements to Haskell Lexer:</title>
<updated>2013-04-04T08:16:34+00:00</updated>
<author>
<name>kudah</name>
<email>kudahkukarek@gmail.com</email>
</author>
<published>2013-04-04T08:16:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=a68c080093f8f070d3a605d22049f4ffbc5c6f87'/>
<id>a68c080093f8f070d3a605d22049f4ffbc5c6f87</id>
<content type='text'>
* Added support for MagicHash extension (lexer.haskell.allow.hash)
* $ and # are now colored as operators.
* .0 and -0 are now properly colored as operator and a number, not as just number.
* Operators starting with double dash (e.g ----&gt;) are properly colored as operators, not comments.
* Added pragma highlighting.
* Added basic C-preprocessor highlighting.
* Qualified names (e.g. ABC.xyz) are now properly highlighted as identifiers, not types.
* Qualified operators (e.g. ABC.&lt;$&gt;) are now properly highlighted as operators.
* Operator . is now properly highlighted as an operator, not part of the identifier, when applied to a qualified and an unqualified value (e.g. Abc.xyz.yzx &lt;- last one is an operator)
* Operators starting with ':' are now properly highlighted as type constructors, not operators.
* family after data is highlighted, as per TypeFamilies.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Added support for MagicHash extension (lexer.haskell.allow.hash)
* $ and # are now colored as operators.
* .0 and -0 are now properly colored as operator and a number, not as just number.
* Operators starting with double dash (e.g ----&gt;) are properly colored as operators, not comments.
* Added pragma highlighting.
* Added basic C-preprocessor highlighting.
* Qualified names (e.g. ABC.xyz) are now properly highlighted as identifiers, not types.
* Qualified operators (e.g. ABC.&lt;$&gt;) are now properly highlighted as operators.
* Operator . is now properly highlighted as an operator, not part of the identifier, when applied to a qualified and an unqualified value (e.g. Abc.xyz.yzx &lt;- last one is an operator)
* Operators starting with ':' are now properly highlighted as type constructors, not operators.
* family after data is highlighted, as per TypeFamilies.
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [#1414]. MATLAB/Octave style block comments.</title>
<updated>2013-04-03T06:50:18+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-04-03T06:50:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=cfa2952926a6d2d4ca86c2e372b66840a3974e08'/>
<id>cfa2952926a6d2d4ca86c2e372b66840a3974e08</id>
<content type='text'>
From John Donoghue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From John Donoghue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Reduce scope of variable.</title>
<updated>2013-04-01T04:21:07+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-04-01T04:21:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=9e1af40727591017d5d25c8a9a52af0f9bde6cd3'/>
<id>9e1af40727591017d5d25c8a9a52af0f9bde6cd3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug: [#1454]. Reject raw strings when character after " is in " )\\\t\v\f\n".</title>
<updated>2013-03-18T09:42:55+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-03-18T09:42:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=71dfc4460f88f3f51de924ec9b313bf91d803991'/>
<id>71dfc4460f88f3f51de924ec9b313bf91d803991</id>
<content type='text'>
See C++11 standard 2.14.5 String literals.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See C++11 standard 2.14.5 String literals.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#1412]. Recognise a JavaScript RegExp literal in more situations.</title>
<updated>2013-03-11T08:47:24+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-03-11T08:47:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=aca495f73c79306c1b53c1ecd91a5d6e6e6ec861'/>
<id>aca495f73c79306c1b53c1ecd91a5d6e6e6ec861</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug: [#482]. Refix to make /// comment not affect folding of following /* comment.</title>
<updated>2013-03-07T01:39:44+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-03-07T01:39:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=f05792129505d74ff7cf3ab5e4768549d5b9709f'/>
<id>f05792129505d74ff7cf3ab5e4768549d5b9709f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug: [#1447]. Interpret PHP within HTML comments.</title>
<updated>2013-02-22T23:13:58+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2013-02-22T23:13:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=d8482166650ce7d6a2e2cabf44a73600fe8a39ef'/>
<id>d8482166650ce7d6a2e2cabf44a73600fe8a39ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
