<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/test, branch master</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:#184]. Add option to disable drag/drop editing</title>
<updated>2026-01-07T21:22:01+00:00</updated>
<author>
<name>Nathaniel Braun</name>
<email>unknown</email>
</author>
<published>2026-01-07T21:22:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=56c071e2734e3812c7c77b611637cbc2698eb7d3'/>
<id>56c071e2734e3812c7c77b611637cbc2698eb7d3</id>
<content type='text'>
SCI_SETDRAGDROPENABLED. Fully implemented on Win32 but may only prevent dragging
on other platforms.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SCI_SETDRAGDROPENABLED. Fully implemented on Win32 but may only prevent dragging
on other platforms.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#2488]. Fix SCI_SETSELECTIONNSTART and SCI_SETSELECTIONNEND.</title>
<updated>2025-12-08T03:38:07+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2025-12-08T03:38:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=724429a7c661eeafe3094a049f747267d0496a69'/>
<id>724429a7c661eeafe3094a049f747267d0496a69</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1567]. Fix bug when indenting rectangular selection.</title>
<updated>2025-10-29T06:10:25+00:00</updated>
<author>
<name>Zufu Liu</name>
<email>unknown</email>
</author>
<published>2025-10-29T06:10:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=bd97e46bc614bb86ff18ab493240dc9be2dabd05'/>
<id>bd97e46bc614bb86ff18ab493240dc9be2dabd05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1567]. Fix running tests in Visual C++ debugger.</title>
<updated>2025-10-29T06:03:25+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2025-10-29T06:03:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=527af5a4ec23792f40dd26dbbc076b006d75369d'/>
<id>527af5a4ec23792f40dd26dbbc076b006d75369d</id>
<content type='text'>
Set optional SCINTILLA_BIN environment variable to point to build directory.
It's unclear just what the problem was but Python 3.13 would crash out in window
handling code when run inside the debugger and using its HINSTANCE.
Changing to a global class and using None for the HINSTANCE made it work.
There are various other minor problems here like using c_int (32-bit) for the
window procedure return instead of c_ssize_t (64-bit) but they are not worth
destabilizing the code further.

Example Scintilla.vcxproj.user for debugging a test script with a particular
Python interpreter.

&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt;
  &lt;PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"&gt;
    &lt;LocalDebuggerCommand&gt;C:\Users\Neil\AppData\Local\Programs\Python\Python313\python.exe&lt;/LocalDebuggerCommand&gt;
    &lt;DebuggerFlavor&gt;WindowsLocalDebugger&lt;/DebuggerFlavor&gt;
    &lt;LocalDebuggerCommandArguments&gt;G:\u\hg\scintilla\test\simpleTests.py&lt;/LocalDebuggerCommandArguments&gt;
    &lt;LocalDebuggerWorkingDirectory&gt;G:\u\hg\scintilla\test\&lt;/LocalDebuggerWorkingDirectory&gt;
    &lt;LocalDebuggerEnvironment&gt;SCINTILLA_BIN=G:\\u\\hg\\scintilla\\win32\\x64\\Debug&lt;/LocalDebuggerEnvironment&gt;
  &lt;/PropertyGroup&gt;
&lt;/Project&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set optional SCINTILLA_BIN environment variable to point to build directory.
It's unclear just what the problem was but Python 3.13 would crash out in window
handling code when run inside the debugger and using its HINSTANCE.
Changing to a global class and using None for the HINSTANCE made it work.
There are various other minor problems here like using c_int (32-bit) for the
window procedure return instead of c_ssize_t (64-bit) but they are not worth
destabilizing the code further.

Example Scintilla.vcxproj.user for debugging a test script with a particular
Python interpreter.

&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt;
  &lt;PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"&gt;
    &lt;LocalDebuggerCommand&gt;C:\Users\Neil\AppData\Local\Programs\Python\Python313\python.exe&lt;/LocalDebuggerCommand&gt;
    &lt;DebuggerFlavor&gt;WindowsLocalDebugger&lt;/DebuggerFlavor&gt;
    &lt;LocalDebuggerCommandArguments&gt;G:\u\hg\scintilla\test\simpleTests.py&lt;/LocalDebuggerCommandArguments&gt;
    &lt;LocalDebuggerWorkingDirectory&gt;G:\u\hg\scintilla\test\&lt;/LocalDebuggerWorkingDirectory&gt;
    &lt;LocalDebuggerEnvironment&gt;SCINTILLA_BIN=G:\\u\\hg\\scintilla\\win32\\x64\\Debug&lt;/LocalDebuggerEnvironment&gt;
  &lt;/PropertyGroup&gt;
&lt;/Project&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1563]. Move main range in selection serialized form.</title>
<updated>2025-07-02T22:23:26+00:00</updated>
<author>
<name>Zufu Liu</name>
<email>unknown</email>
</author>
<published>2025-07-02T22:23:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=cde12528a7e587833926354b88ad1974aedaf103'/>
<id>cde12528a7e587833926354b88ad1974aedaf103</id>
<content type='text'>
Avoid processing characters multiple times by relying on from_chars munching
digit characters instead of searching for delimiters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Avoid processing characters multiple times by relying on from_chars munching
digit characters instead of searching for delimiters.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add SCI_AUTOC{G,S}ETIMAGESCALE and implement for Qt and GTK.</title>
<updated>2025-05-12T01:38:13+00:00</updated>
<author>
<name>orbitalquark</name>
<email>70453897+orbitalquark@users.noreply.github.com</email>
</author>
<published>2025-05-12T01:38:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=140a921a133ee63337e8dfe1c7261b7eb86399e9'/>
<id>140a921a133ee63337e8dfe1c7261b7eb86399e9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add performance test for case-insensitive DBCS searching.</title>
<updated>2025-03-27T08:37:53+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2025-03-27T08:37:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=b451f612b65dfe1ad678080e7b897733be310d01'/>
<id>b451f612b65dfe1ad678080e7b897733be310d01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Define constants for UTF-8 and UTF-16 implementation for clarity.</title>
<updated>2025-03-08T00:44:57+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2025-03-08T00:44:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=386fb7a89ffbff9497d8e9ce7d7f44c038c49729'/>
<id>386fb7a89ffbff9497d8e9ce7d7f44c038c49729</id>
<content type='text'>
Add tests to check that inverted conversions yield the original value.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add tests to check that inverted conversions yield the original value.
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1417]. Improve UTF-8 segmentation for some control</title>
<updated>2025-03-02T23:30:30+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2025-03-02T23:30:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=00838f369d7ca189b498f70c8c446ccc64cc0e2f'/>
<id>00838f369d7ca189b498f70c8c446ccc64cc0e2f</id>
<content type='text'>
characters and invalid bytes.
Add more test cases.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
characters and invalid bytes.
Add more test cases.
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence some warnings in test code.</title>
<updated>2025-02-23T00:05:23+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2025-02-23T00:05:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=47b91df0cadb92f0dbaae441926448308b450ea1'/>
<id>47b91df0cadb92f0dbaae441926448308b450ea1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
