<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/test, branch rel-3-20-0</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>Reformatted Lua LPeg lexers and added new convenience functions and pattern.</title>
<updated>2020-04-25T20:26:31+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2020-04-25T20:26:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=fad15f79b1230b3076be515d6894c8919562809b'/>
<id>fad15f79b1230b3076be515d6894c8919562809b</id>
<content type='text'>
`lexer.range()` replaces `lexer.delimited_range()` and `lexer.nested_pair()`.
`lexer.to_eol()` replaces `patt * lexer.nonnewline^0` constructs.
`lexer.number` replaces `lexer.float + lexer.integer`.
Also added unit tests for lexer functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`lexer.range()` replaces `lexer.delimited_range()` and `lexer.nested_pair()`.
`lexer.to_eol()` replaces `patt * lexer.nonnewline^0` constructs.
`lexer.number` replaces `lexer.float + lexer.integer`.
Also added unit tests for lexer functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Feature [feature-requests:1344]. Add methods for iterating through the marker</title>
<updated>2020-04-07T23:27:43+00:00</updated>
<author>
<name>Iain Clarke</name>
<email>unknown</email>
</author>
<published>2020-04-07T23:27:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=48e716a6bc32736c1035f3f9edc78eba2987fc39'/>
<id>48e716a6bc32736c1035f3f9edc78eba2987fc39</id>
<content type='text'>
handles and marker numbers on a line.

Backport of changeset 8129:665c31051e3c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
handles and marker numbers on a line.

Backport of changeset 8129:665c31051e3c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Bug [#2164]. Change line comments to terminate at next line start.</title>
<updated>2020-04-05T21:41:14+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-04-05T21:41:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=3a9b91d238783aa87dd65245ca9f2d288e2d26d9'/>
<id>3a9b91d238783aa87dd65245ca9f2d288e2d26d9</id>
<content type='text'>
This changes the lexing test results a lot since line comments are common.

Backport of changeset 8123:3f7f9e476cfb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes the lexing test results a lot since line comments are common.

Backport of changeset 8123:3f7f9e476cfb.
</pre>
</div>
</content>
</entry>
<entry>
<title>lexlua: Fixed incorrect grammar building for lexers that embed themselves.</title>
<updated>2020-03-30T00:12:40+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2020-03-30T00:12:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=d8dfede4dc16846dd15ceeafa79a51c446d7f84e'/>
<id>d8dfede4dc16846dd15ceeafa79a51c446d7f84e</id>
<content type='text'>
When there is no initial '*_whitespace' style, child lexers should prefer their
parent's grammar rather than their own.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When there is no initial '*_whitespace' style, child lexers should prefer their
parent's grammar rather than their own.
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to 1-based style numbers internally in Lua.</title>
<updated>2020-03-28T22:38:01+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2020-03-28T22:38:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=7ffaae978a096dd2a922a0a7b227a02439753d43'/>
<id>7ffaae978a096dd2a922a0a7b227a02439753d43</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to 1-based indices in Lua.</title>
<updated>2020-03-26T15:20:26+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2020-03-26T15:20:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=acb7c70264348bc80c151bfc76c7b107e8db99ab'/>
<id>acb7c70264348bc80c151bfc76c7b107e8db99ab</id>
<content type='text'>
The only external, 3rd party lexers that would be affected are those
implementing their own fold functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The only external, 3rd party lexers that would be affected are those
implementing their own fold functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Synchronizing LongTerm3 with default.</title>
<updated>2020-01-05T22:10:23+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2020-01-05T22:10:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ca79b65eea2653ecbf62eb0f1d0caf4ff6dea601'/>
<id>ca79b65eea2653ecbf62eb0f1d0caf4ff6dea601</id>
<content type='text'>
Ideally this covers anything missed during the backport process.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ideally this covers anything missed during the backport process.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Add SparseVector::DeleteRange for efficiently removing ranges.</title>
<updated>2019-12-01T21:39:52+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2019-12-01T21:39:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=cf150e2082ff95d8da6f8f74e1d15e1b33ab2e19'/>
<id>cf150e2082ff95d8da6f8f74e1d15e1b33ab2e19</id>
<content type='text'>
Backport of changeset 7780:88e65c696c40.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport of changeset 7780:88e65c696c40.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Add SparseVector::IndexAfter for efficiently finding elements in a range.</title>
<updated>2019-12-01T21:34:47+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2019-12-01T21:34:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=e9f310d4043e58739c9e661159a35847a7ba5df5'/>
<id>e9f310d4043e58739c9e661159a35847a7ba5df5</id>
<content type='text'>
Backport of changeset 7779:67b7e8f152a9.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport of changeset 7779:67b7e8f152a9.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Allow setting value at end of a SparseVector.</title>
<updated>2019-12-01T09:41:27+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2019-12-01T09:41:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=2892e0d04bcf02fe249939f7c22fe8c6d780233a'/>
<id>2892e0d04bcf02fe249939f7c22fe8c6d780233a</id>
<content type='text'>
Change representation of SparseVector in tests so last value can be seen.

Backport of changeset 7778:b7842ad8047b.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change representation of SparseVector in tests so last value can be seen.

Backport of changeset 7778:b7842ad8047b.
</pre>
</div>
</content>
</entry>
</feed>
