<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/src, branch rel-5-3-8</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>Feature [feature-requests:#1500] Remove match text retrieval from MatchOnLines</title>
<updated>2023-11-01T21:51:15+00:00</updated>
<author>
<name>Zufu Liu</name>
<email>unknown</email>
</author>
<published>2023-11-01T21:51:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=e702dacda85f0976d1006d9634dc38b53fad1336'/>
<id>e702dacda85f0976d1006d9634dc38b53fad1336</id>
<content type='text'>
as it is redone in SubstituteByPosition.
Replace RESearch::pat and RESearch::GrabMatches with retrieving matches as
needed in SubstituteByPosition.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as it is redone in SubstituteByPosition.
Replace RESearch::pat and RESearch::GrabMatches with retrieving matches as
needed in SubstituteByPosition.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#2078]. Fix rectangular selections with SCI_MOVESELECTEDLINESUP and</title>
<updated>2023-10-28T22:25:20+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-28T22:25:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=60e0be1d49d4ba0e093a28bd3c2039f0c1ef8344'/>
<id>60e0be1d49d4ba0e093a28bd3c2039f0c1ef8344</id>
<content type='text'>
SCI_MOVESELECTEDLINESDOWN.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SCI_MOVESELECTEDLINESDOWN.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract key code from HorizontalMove to shorten and simplify it.</title>
<updated>2023-10-27T10:12:32+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-27T10:12:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=29ff682132a9de383243794764bd12d9e43e4899'/>
<id>29ff682132a9de383243794764bd12d9e43e4899</id>
<content type='text'>
New methods are SelectionMove, PositionMove, HomeWrapPosition and
SelectionPosition::AddVirtualSpace.
This refactoring commit does not change behaviour.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
New methods are SelectionMove, PositionMove, HomeWrapPosition and
SelectionPosition::AddVirtualSpace.
This refactoring commit does not change behaviour.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add LineStartPosition to replace common idiom LineStart(LineFromPosition(x)) as</title>
<updated>2023-10-26T03:48:39+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-26T03:48:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=d6d33d9460fb5fba165cbbd743b501324baa7516'/>
<id>d6d33d9460fb5fba165cbbd743b501324baa7516</id>
<content type='text'>
this shortens code. LineStartPosition is also noexcept which allows callers to
be noexcept.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this shortens code. LineStartPosition is also noexcept which allows callers to
be noexcept.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement LineEnd method in CellBuffer as it is a basic function and only uses</title>
<updated>2023-10-26T02:44:13+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-26T02:44:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=8f42bb51d6445602027d8c68d6c6f225f6536c68'/>
<id>8f42bb51d6445602027d8c68d6c6f225f6536c68</id>
<content type='text'>
CellBuffer fields.
Declare LineEnd noexcept as it should never throw and that allows methods
calling it to also be noexcept.
Call LineEndPosition to simplify Editor::LineSelectionRange.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CellBuffer fields.
Declare LineEnd noexcept as it should never throw and that allows methods
calling it to also be noexcept.
Call LineEndPosition to simplify Editor::LineSelectionRange.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#2405]. Fix incorrect substitution when searching for a regular expression</title>
<updated>2023-10-14T21:46:43+00:00</updated>
<author>
<name>Zufu Liu</name>
<email>unknown</email>
</author>
<published>2023-10-14T21:46:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=6658e397e2d0447bef4c5dd1db1c38d5d7917ac9'/>
<id>6658e397e2d0447bef4c5dd1db1c38d5d7917ac9</id>
<content type='text'>
backwards.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
backwards.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use std::array for regex match positions as it will simplify copying.</title>
<updated>2023-10-14T21:40:37+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-14T21:40:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=0a00f1b52c9f05800192db71ccc28dfaed58729b'/>
<id>0a00f1b52c9f05800192db71ccc28dfaed58729b</id>
<content type='text'>
This change set does not change behaviour.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change set does not change behaviour.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move platform colour definitions outside constructor and improve names.</title>
<updated>2023-10-11T22:46:14+00:00</updated>
<author>
<name>Neil Hodgson</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-11T22:46:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=810883d3e039c92ce33372cc2e762615325b37f9'/>
<id>810883d3e039c92ce33372cc2e762615325b37f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Share definition of colour used for IME indicators on most platforms.</title>
<updated>2023-10-09T23:10:31+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-09T23:10:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=fef04a18f5806f0842a1b97d3548738522ee1e33'/>
<id>fef04a18f5806f0842a1b97d3548738522ee1e33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename bugColour to colourBug to follow convention.</title>
<updated>2023-10-09T23:09:27+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2023-10-09T23:09:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=3cfe8e087cea56ab445a3bf1da3762e5c224c374'/>
<id>3cfe8e087cea56ab445a3bf1da3762e5c224c374</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
