<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-14245</id>
	<title>Nabble - Scintilla</title>
	<updated>2009-10-01T06:15:41Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Scintilla-f14245.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Scintilla-f14245.html" />
	<subtitle type="html">Scintilla is a free source code editing component. It comes with complete source code and a license that permits use in any free project or commercial product. Scintilla home is &lt;a href=&quot;http://www.scintilla.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-25696870</id>
	<title>Hints to implement Scintilla on a new Platform</title>
	<published>2009-10-01T06:15:41Z</published>
	<updated>2009-10-01T06:15:41Z</updated>
	<author>
		<name>orel</name>
	</author>
	<content type="html">Hi everyone, 
&lt;br&gt;&lt;br&gt;i'am looking for documentation on implementing Scintilla but i found nothing else that the help given on Scintilla web site. I also looked at many existing implementations, Win, GTK, WX, etc...
&lt;br&gt;&lt;br&gt;I am developing a robots game in which the player-programmer has to program the Artificial Intelligence of itw own units. the AI scripting is made in Squirrel Script. I want an ingame code editor with Syntax highlithing and i think Scintilla is the best to dp this due to its platform independent nature. The game is developped in SDL, along with a complete GUI system on top pf SDL named Guichan, providing quite everything needed to implement Scintilla on it, complete text drawing, primitives drawings, window management, widgets like Listbox, DropDown menus etc...
&lt;br&gt;&lt;br&gt;&lt;br&gt;If some of you has hints or advices to guide me in this process, it would be great. ;-)
&lt;br&gt;&lt;br&gt;Thank you. (sorry for my english)
&lt;br&gt;&lt;br&gt;Aurelien R.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hints-to-implement-Scintilla-on-a-new-Platform-tp25696870p25696870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24278747</id>
	<title>Introduce a long line wrapping after the last word before maximum?</title>
	<published>2009-06-30T13:18:51Z</published>
	<updated>2009-06-30T13:18:51Z</updated>
	<author>
		<name>pstein</name>
	</author>
	<content type="html">I would appreciate if Scintilla would offer a smart long line wrapping mechanism/option.
&lt;br&gt;&lt;br&gt;So when a line in a text file contains say 150 chars and the user setup a maximum line length
&lt;br&gt;of 110 then Scintilla should wrap the line at the first blank left of col 110.
&lt;br&gt;So words are not cut in the mid.
&lt;br&gt;&lt;br&gt;Is this possible in the next release ?
&lt;br&gt;&lt;br&gt;Peter&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introduce-a-long-line-wrapping-after-the-last-word-before-maximum--tp24278747p24278747.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21567014</id>
	<title>Tab in Scintilla</title>
	<published>2009-01-20T08:49:24Z</published>
	<updated>2009-01-20T08:49:24Z</updated>
	<author>
		<name>iostream</name>
	</author>
	<content type="html">I develop a simple editor, I use the programming language PureBasic and Scintilla 1.77 (scilexer.dll) for my editing components...how can i make a TAB in a Scintilla-editing component?&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tab-in-Scintilla-tp21567014p21567014.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-13510815</id>
	<title>DM and Scintilla</title>
	<published>2007-10-31T08:40:32Z</published>
	<updated>2007-10-31T08:40:32Z</updated>
	<author>
		<name>JohnSouto</name>
	</author>
	<content type="html">Hey, I'm not much of a C++ programmer, but I'd like to see a language called DM (&lt;a href=&quot;http://byond.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://byond.com&lt;/a&gt;) added to Scintilla. The syntax can be weird because it can sometimes look like C++, and it can sometimes look like Python. Here's an example of some code:
&lt;br&gt;&lt;br&gt;&lt;br&gt;//Comments are exactly the same as C++, including /* block comments */
&lt;br&gt;mob //parent class, the class will inherit traits from the parent class
&lt;br&gt;&amp;nbsp; &amp;nbsp; player //class
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //variables here in a block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; health = 0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; strength = 2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name = &amp;quot;Tony&amp;quot;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; proc // function/method/procedure
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; damage(takeDamage)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; health -= takeDamage
&lt;br&gt;&lt;br&gt;Strange part about DM is that you can write the exact same code in many different ways (and by exact same code, I mean same instructions with varying syntax). Here's the same code but using C++ braces and semi-colons:
&lt;br&gt;&lt;br&gt;&lt;br&gt;mob {
&lt;br&gt;&amp;nbsp; &amp;nbsp; player {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; health = 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; strength = 2;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name = &amp;quot;Tony&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; proc {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; damage(takeDamage) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; health -= takeDamage;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;The code above would function the same as the other block of code. Making a lexer for this isn't easy, and that's why I am asking for the help of you good people. If anyone wants to try to make a lexer for DM, you can reply here or e-mail me at soutojohn@gmail.com and I'll try to help you out as much as possible. Thanks a lot.
&lt;br&gt;&lt;br&gt;&amp;nbsp;-John&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/DM-and-Scintilla-tp13510815p13510815.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12426973</id>
	<title>Re: Re: Re: lexer for Asymptote</title>
	<published>2007-08-31T07:59:46Z</published>
	<updated>2007-08-31T07:59:46Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">Neil,
&lt;br&gt;&lt;br&gt;It look like my reply to you made on 28 August has somehow disappeared. Of course I agree to add this line 
&lt;br&gt;&lt;br&gt;// The License.txt file describes the conditions under which this software may be distributed.
&lt;br&gt;&lt;br&gt;in LexASY.cxx. Now I upload a version with this line included. I'll appreciate if you'ld include this piece of code in the next release. Thank you.
&lt;br&gt;&lt;br&gt;instanton
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Neil Hodgson wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;&amp;nbsp; &amp;nbsp;Can you include the standard:
&lt;br&gt;// The License.txt file describes the conditions under which this
&lt;br&gt;software may be distributed.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Otherwise I receive boring license questions. Current widespread
&lt;br&gt;belief is that you get copyright whether you want it or not so saying
&lt;br&gt;&amp;quot;No Copyright&amp;quot; has no effect. You should be aware that including your
&lt;br&gt;email address in the code will publish this widely and is likely to
&lt;br&gt;result in receiving spam.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/file/p12426973/LexASY.cxx&quot; target=&quot;_top&quot;&gt;LexASY.cxx&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12426973.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12552327</id>
	<title>[ scintilla-Feature Requests-1783440 ] code snippet</title>
	<published>2007-08-28T08:39:06Z</published>
	<updated>2007-08-28T08:39:06Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1783440, was opened at 2007-08-28 14:39
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1783440&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1783440&amp;group_id=2439&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: Scintilla
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Fan Yang (missdeer)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: code snippet
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I want to add code snippet support in my project. That is if user type some characters then type TAB, editor should auto replace these characters with a pre-defined string. Or scintilla could sends a TAB notification, then the container could process this case.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1783440&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1783440&amp;group_id=2439&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12552327&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Feature-Requests-1783440---code-snippet-tp12552327p12552327.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12552311</id>
	<title>Re: Re: Re: lexer for Asymptote</title>
	<published>2007-08-28T07:51:47Z</published>
	<updated>2007-08-28T07:51:47Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=gb2312&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.3157&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY style=&quot;FONT-SIZE: 10pt; FONT-FAMILY: verdana&quot;&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;Neil:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT color=#000080&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;Yes of course. Just done it in the 
attached file LexASY.cxx.&lt;/FONT&gt;&lt;BR&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;I'll appreciate if you'ld include 
this piece of code in the next release. Thank you.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;2007-08-28 &lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR style=&quot;WIDTH: 122px; HEIGHT: 2px&quot; align=left SIZE=2&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;&lt;SPAN&gt;Instanton&lt;/SPAN&gt; 
&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发件人：&lt;/STRONG&gt; Neil Hodgson &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发送时间：&lt;/STRONG&gt; 2007-08-28&amp;nbsp; 21:03:32 
&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;收件人：&lt;/STRONG&gt; Discussion of the Scintilla 
editing component &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;抄送：&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;主题：&lt;/STRONG&gt; Re: Re: Re: [scintilla] 
lexer for Asymptote &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;/FONT&gt; &lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Can&amp;nbsp;you&amp;nbsp;include&amp;nbsp;the&amp;nbsp;standard:&lt;/DIV&gt;
&lt;DIV&gt;//&amp;nbsp;The&amp;nbsp;License.txt&amp;nbsp;file&amp;nbsp;describes&amp;nbsp;the&amp;nbsp;conditions&amp;nbsp;under&amp;nbsp;which&amp;nbsp;this&lt;/DIV&gt;
&lt;DIV&gt;software&amp;nbsp;may&amp;nbsp;be&amp;nbsp;distributed.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Otherwise&amp;nbsp;I&amp;nbsp;receive&amp;nbsp;boring&amp;nbsp;license&amp;nbsp;questions.&amp;nbsp;Current&amp;nbsp;widespread&lt;/DIV&gt;
&lt;DIV&gt;belief&amp;nbsp;is&amp;nbsp;that&amp;nbsp;you&amp;nbsp;get&amp;nbsp;copyright&amp;nbsp;whether&amp;nbsp;you&amp;nbsp;want&amp;nbsp;it&amp;nbsp;or&amp;nbsp;not&amp;nbsp;so&amp;nbsp;saying&lt;/DIV&gt;
&lt;DIV&gt;&quot;No&amp;nbsp;Copyright&quot;&amp;nbsp;has&amp;nbsp;no&amp;nbsp;effect.&amp;nbsp;You&amp;nbsp;should&amp;nbsp;be&amp;nbsp;aware&amp;nbsp;that&amp;nbsp;including&amp;nbsp;your&lt;/DIV&gt;
&lt;DIV&gt;email&amp;nbsp;address&amp;nbsp;in&amp;nbsp;the&amp;nbsp;code&amp;nbsp;will&amp;nbsp;publish&amp;nbsp;this&amp;nbsp;widely&amp;nbsp;and&amp;nbsp;is&amp;nbsp;likely&amp;nbsp;to&lt;/DIV&gt;
&lt;DIV&gt;result&amp;nbsp;in&amp;nbsp;receiving&amp;nbsp;spam.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Neil&lt;/DIV&gt;
&lt;DIV&gt;_______________________________________________&lt;/DIV&gt;
&lt;DIV&gt;Scintilla-interest&amp;nbsp;mailing&amp;nbsp;list&lt;/DIV&gt;
&lt;DIV&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12552311&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/A&gt;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12552311&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;LexASY.cxx&lt;/strong&gt; (10K) &lt;a href=&quot;http://old.nabble.com/attachment/12552311/0/LexASY.cxx&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12552311.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12368588</id>
	<title>Re: Re: SCN_DWELLSTART when the cursor is out of Scintillacontrol region</title>
	<published>2007-08-28T07:45:09Z</published>
	<updated>2007-08-28T07:45:09Z</updated>
	<author>
		<name>YangFan-2</name>
	</author>
	<content type="html">Hi, Neil Hodgson
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I'm using Windows XP Pro SP2, and now I call GetCursorPos and GetWindowRect to judge if the cursor is in the rectangle in SCN_DWELLSTART handler to avoid the defect. But I think if Scintilla does that would be better.
&lt;br&gt;&lt;br&gt;======= 2007-08-28 21:05:16 you said：=======
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;YangFan:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I find Scintilla sends SCN_DWELLSTART notifications
&lt;br&gt;&amp;gt;&amp;gt; when the mouse cursor is out of the control region, see the
&lt;br&gt;&amp;gt;&amp;gt; attachment for more info. I think Scintilla should resolve this case.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Looks like the platform layer is sending mouse move events to
&lt;br&gt;&amp;gt;Scintilla even when the mouse is outside the window. I couldn't work
&lt;br&gt;&amp;gt;out which platform this is.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Neil
&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Scintilla-interest mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368588&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;/div&gt;&lt;br&gt;= = = = = = = = = = = = = = = = = = = =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;　　　　　　　　Regards
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;　　　　　　　　YangFan
&lt;br&gt;　　　　　　　　&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368588&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;missdeer@...&lt;/a&gt;
&lt;br&gt;　　　　　　　　　　2007-08-28
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368588&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SCN_DWELLSTART-when-the-cursor-is-out-of-Scintilla-control-region-tp12358785p12368588.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12368405</id>
	<title>Re: Re: SCN_DWELLSTART when the cursor is out ofScintillacontrol region</title>
	<published>2007-08-28T07:38:18Z</published>
	<updated>2007-08-28T07:38:18Z</updated>
	<author>
		<name>YangFan-2</name>
	</author>
	<content type="html">Hi, Instanton
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; We use Scintilla in our project for Ruby scripts editing mainly. It's an internal using tool in our company.
&lt;br&gt;&lt;br&gt;======= 2007-08-28 16:54:33 you said：=======
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Interesting. Can I ask what the editor is &amp;nbsp;in the picture?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;2007-08-28 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Instanton 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;发件人： YangFan 
&lt;br&gt;&amp;gt;发送时间： 2007-08-28 &amp;nbsp;15:22:56 
&lt;br&gt;&amp;gt;收件人： Scintilla-interest 
&lt;br&gt;&amp;gt;抄送： 
&lt;br&gt;&amp;gt;主题： [scintilla] SCN_DWELLSTART when the cursor is out of Scintillacontrol region 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I find Scintilla sends SCN_DWELLSTART notifications when the mouse cursor is out of the control region, see the attachment for more info. I think Scintilla should resolve this case.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;　　　　　　　　Regards
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;　　　　　　　　YangFan
&lt;br&gt;&amp;gt;　　　　　　　　&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368405&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;missdeer@...&lt;/a&gt;
&lt;br&gt;&amp;gt;　　　　　　　　　　2007-08-27
&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Scintilla-interest mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368405&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Scintilla-interest mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368405&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;= = = = = = = = = = = = = = = = = = = =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;　　　　　　　　Regards
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;　　　　　　　　YangFan
&lt;br&gt;　　　　　　　　&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368405&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;missdeer@...&lt;/a&gt;
&lt;br&gt;　　　　　　　　　　2007-08-28
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12368405&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SCN_DWELLSTART-when-the-cursor-is-out-of-Scintilla-control-region-tp12358785p12368405.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12367733</id>
	<title>Re: Re: Re: lexer for Asymptote</title>
	<published>2007-08-28T07:02:24Z</published>
	<updated>2007-08-28T07:02:24Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Can you include the standard:
&lt;br&gt;// The License.txt file describes the conditions under which this
&lt;br&gt;software may be distributed.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Otherwise I receive boring license questions. Current widespread
&lt;br&gt;belief is that you get copyright whether you want it or not so saying
&lt;br&gt;&amp;quot;No Copyright&amp;quot; has no effect. You should be aware that including your
&lt;br&gt;email address in the code will publish this widely and is likely to
&lt;br&gt;result in receiving spam.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12367733&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12367733.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12367613</id>
	<title>Re: SCN_DWELLSTART when the cursor is out of Scintilla control region</title>
	<published>2007-08-28T07:01:25Z</published>
	<updated>2007-08-28T07:01:25Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">YangFan:
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I find Scintilla sends SCN_DWELLSTART notifications
&lt;br&gt;&amp;gt; when the mouse cursor is out of the control region, see the
&lt;br&gt;&amp;gt; attachment for more info. I think Scintilla should resolve this case.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Looks like the platform layer is sending mouse move events to
&lt;br&gt;Scintilla even when the mouse is outside the window. I couldn't work
&lt;br&gt;out which platform this is.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12367613&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SCN_DWELLSTART-when-the-cursor-is-out-of-Scintilla-control-region-tp12358785p12367613.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12364343</id>
	<title>Re: SCN_DWELLSTART when the cursor is out of Scintillacontrol region</title>
	<published>2007-08-28T02:43:35Z</published>
	<updated>2007-08-28T02:43:35Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=gb2312&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.3157&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY style=&quot;FONT-SIZE: 10pt; FONT-FAMILY: verdana&quot;&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;Interesting. Can I ask what the 
editor is&amp;nbsp; in the picture?&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;2007-08-28 &lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR style=&quot;WIDTH: 122px; HEIGHT: 2px&quot; align=left SIZE=2&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;&lt;SPAN&gt;Instanton&lt;/SPAN&gt; 
&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发件人：&lt;/STRONG&gt; YangFan &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发送时间：&lt;/STRONG&gt; 2007-08-28&amp;nbsp; 15:22:56 
&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;收件人：&lt;/STRONG&gt; Scintilla-interest 
&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;抄送：&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;主题：&lt;/STRONG&gt; [scintilla] SCN_DWELLSTART 
when the cursor is out of Scintillacontrol region &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;/FONT&gt; &lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;
&lt;DIV&gt;Hi&amp;nbsp;all,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;I&amp;nbsp;find&amp;nbsp;Scintilla&amp;nbsp;sends&amp;nbsp;SCN_DWELLSTART&amp;nbsp;notifications&amp;nbsp;when&amp;nbsp;the&amp;nbsp;mouse&amp;nbsp;cursor&amp;nbsp;is&amp;nbsp;out&amp;nbsp;of&amp;nbsp;the&amp;nbsp;control&amp;nbsp;region,&amp;nbsp;see&amp;nbsp;the&amp;nbsp;attachment&amp;nbsp;for&amp;nbsp;more&amp;nbsp;info.&amp;nbsp;I&amp;nbsp;think&amp;nbsp;Scintilla&amp;nbsp;should&amp;nbsp;resolve&amp;nbsp;this&amp;nbsp;case.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;　　　　　　　　Regards&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt; &lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;　　　　　　　　YangFan&lt;/DIV&gt;
&lt;DIV&gt;　　　　　　　　&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12364343&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;missdeer@...&lt;/a&gt;&lt;/DIV&gt;
&lt;DIV&gt;　　　　　　　　　　2007-08-27&lt;/DIV&gt;
&lt;DIV&gt;_______________________________________________&lt;/DIV&gt;
&lt;DIV&gt;Scintilla-interest&amp;nbsp;mailing&amp;nbsp;list&lt;/DIV&gt;
&lt;DIV&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12364343&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12364343&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SCN_DWELLSTART-when-the-cursor-is-out-of-Scintilla-control-region-tp12358785p12364343.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12353091</id>
	<title>Re: Re: Re: lexer for Asymptote</title>
	<published>2007-08-27T09:02:10Z</published>
	<updated>2007-08-27T09:02:10Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=gb2312&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.3157&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY style=&quot;FONT-SIZE: 10pt; FONT-FAMILY: verdana&quot;&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;O&lt;/FONT&gt;K. Then just add the 
following after line 3220 of Scintilla.iface. It doesn't make any difference 
here after compilation.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;#--------------------&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;# Lical states for Asymptote&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;val SCE_ASY_DEFAULT=0&lt;BR&gt;val SCE_ASY_COMMENT=1&lt;BR&gt;val 
SCE_ASY_COMMENTLINE=2&lt;BR&gt;val SCE_ASY_NUMBER=3&lt;BR&gt;val SCE_ASY_WORD=4&lt;BR&gt;val 
SCE_ASY_STRING=5&lt;BR&gt;val SCE_ASY_CHARACTER=6&lt;BR&gt;val SCE_ASY_OPERATOR=7&lt;BR&gt;val 
SCE_ASY_IDENTIFIER=8&lt;BR&gt;val SCE_ASY_STRINGEOL=9&lt;BR&gt;val 
SCE_ASY_COMMENTLINEDOC=10&lt;BR&gt;val SCE_ASY_WORD2=11&lt;BR&gt;&lt;/DIV&gt;
&lt;DIV&gt;#--------------------&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;2007-08-27 &lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR style=&quot;WIDTH: 122px; HEIGHT: 2px&quot; align=left SIZE=2&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;&lt;SPAN&gt;Instanton&lt;/SPAN&gt; 
&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发件人：&lt;/STRONG&gt; Neil Hodgson &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发送时间：&lt;/STRONG&gt; 2007-08-27&amp;nbsp; 21:31:53 
&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;收件人：&lt;/STRONG&gt; Discussion of the Scintilla 
editing component &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;抄送：&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;主题：&lt;/STRONG&gt; Re: Re: Re: [scintilla] 
lexer for Asymptote &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;/FONT&gt; &lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;
&lt;DIV&gt;Instanton:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;gt;&amp;nbsp;Not&amp;nbsp;really.&amp;nbsp;I&amp;nbsp;suppose&amp;nbsp;these&amp;nbsp;goes&amp;nbsp;in&amp;nbsp;SciLexer.h.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;SciLexer.h&amp;nbsp;is&amp;nbsp;generated&amp;nbsp;from&amp;nbsp;Scintilla.iface.&amp;nbsp;All&amp;nbsp;symbol&lt;/DIV&gt;
&lt;DIV&gt;definitions&amp;nbsp;should&amp;nbsp;be&amp;nbsp;defined&amp;nbsp;in&amp;nbsp;Scintilla.iface.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Neil&lt;/DIV&gt;
&lt;DIV&gt;_______________________________________________&lt;/DIV&gt;
&lt;DIV&gt;Scintilla-interest&amp;nbsp;mailing&amp;nbsp;list&lt;/DIV&gt;
&lt;DIV&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12353091&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/A&gt;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12353091&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12353091.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12347242</id>
	<title>Re: Re: Re: lexer for Asymptote</title>
	<published>2007-08-27T06:20:53Z</published>
	<updated>2007-08-27T06:20:53Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">Instanton:
&lt;br&gt;&lt;br&gt;&amp;gt; Not really. I suppose these goes in SciLexer.h.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;SciLexer.h is generated from Scintilla.iface. All symbol
&lt;br&gt;definitions should be defined in Scintilla.iface.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12347242&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12347242.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12345930</id>
	<title>Re: Re: Re: lexer for Asymptote</title>
	<published>2007-08-27T06:04:01Z</published>
	<updated>2007-08-27T06:04:01Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=gb2312&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.3157&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY style=&quot;FONT-SIZE: 10pt; FONT-FAMILY: verdana&quot;&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;Not really. I suppose these goes in 
SciLexer.h.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;2007-08-27 &lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR style=&quot;WIDTH: 122px; HEIGHT: 2px&quot; align=left SIZE=2&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;&lt;SPAN&gt;Instanton&lt;/SPAN&gt; 
&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发件人：&lt;/STRONG&gt; Neil Hodgson &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发送时间：&lt;/STRONG&gt; 2007-08-27&amp;nbsp; 19:24:06 
&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;收件人：&lt;/STRONG&gt; Discussion of the Scintilla 
editing component &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;抄送：&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;主题：&lt;/STRONG&gt; Re: Re: [scintilla] lexer 
for Asymptote &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;/FONT&gt; &lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;
&lt;DIV&gt;Instanton:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;gt;&amp;nbsp;Sure.&amp;nbsp;I&amp;nbsp;forgotto&amp;nbsp;upload&amp;nbsp;it.&amp;nbsp;Now&amp;nbsp;attached.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Did&amp;nbsp;you&amp;nbsp;intend&amp;nbsp;this&amp;nbsp;to&amp;nbsp;contain&amp;nbsp;definitions&amp;nbsp;of&amp;nbsp;SCE_ASY_*&amp;nbsp;?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Neil&lt;/DIV&gt;
&lt;DIV&gt;_______________________________________________&lt;/DIV&gt;
&lt;DIV&gt;Scintilla-interest&amp;nbsp;mailing&amp;nbsp;list&lt;/DIV&gt;
&lt;DIV&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12345930&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/A&gt;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12345930&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12345930.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12358785</id>
	<title>SCN_DWELLSTART when the cursor is out of Scintilla control region</title>
	<published>2007-08-27T05:54:17Z</published>
	<updated>2007-08-27T05:54:17Z</updated>
	<author>
		<name>YangFan-2</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I find Scintilla sends SCN_DWELLSTART notifications when the mouse cursor is out of the control region, see the attachment for more info. I think Scintilla should resolve this case.
&lt;br&gt;&lt;br&gt;　　　　　　　　Regards
&lt;br&gt;&lt;br&gt;&amp;nbsp;				
&lt;br&gt;&lt;br&gt;　　　　　　　　YangFan
&lt;br&gt;　　　　　　　　&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12358785&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;missdeer@...&lt;/a&gt;
&lt;br&gt;　　　　　　　　　　2007-08-27
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12358785&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;1.gif&lt;/strong&gt; (58K) &lt;a href=&quot;http://old.nabble.com/attachment/12358785/0/1.gif&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SCN_DWELLSTART-when-the-cursor-is-out-of-Scintilla-control-region-tp12358785p12358785.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12345314</id>
	<title>Re: Re: lexer for Asymptote</title>
	<published>2007-08-27T04:47:36Z</published>
	<updated>2007-08-27T04:47:36Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">Instanton:
&lt;br&gt;&lt;br&gt;&amp;gt; Sure. I forgotto upload it. Now attached.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Did you intend this to contain definitions of SCE_ASY_* ?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12345314&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12345314.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12343336</id>
	<title>Re: [ scintilla-Bugs-1775346 ] Problem of key word highlighting</title>
	<published>2007-08-27T02:25:00Z</published>
	<updated>2007-08-27T02:25:00Z</updated>
	<author>
		<name>Philippe Lhoste-2</name>
	</author>
	<content type="html">On 17/08/2007 04:49, Robert Roessler wrote:
&lt;br&gt;&amp;gt;&amp;gt; Initial Comment:
&lt;br&gt;&amp;gt;&amp;gt; Open a file by SciTE,such as a c++ file.
&lt;br&gt;&amp;gt;&amp;gt; If the key word is at the end of the file,i.e. after this word it is EOF.
&lt;br&gt;&amp;gt;&amp;gt; In such case the key word can not be highlighted.
&lt;br&gt;&amp;gt;&amp;gt; There's some problem in scintilla in Colourise*Doc function.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Actually, I think you will find that it is just a choice on the part of 
&lt;br&gt;&amp;gt; the lexer writer.
&lt;br&gt;&lt;br&gt;I doubt it is a voluntary choice... Anyway, the fix isn't very hard, I 
&lt;br&gt;have shown already how to implement it.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Philippe Lhoste
&lt;br&gt;-- &amp;nbsp;(near) Paris -- France
&lt;br&gt;-- &amp;nbsp;&lt;a href=&quot;http://Phi.Lho.free.fr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://Phi.Lho.free.fr&lt;/a&gt;&lt;br&gt;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;-- &amp;nbsp;--
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12343336&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Bugs-1775346---Problem-of-key-word-highlighting-tp12190903p12343336.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12339069</id>
	<title>Re: Hexadecimal Unicode input feature?</title>
	<published>2007-08-26T15:06:18Z</published>
	<updated>2007-08-26T15:06:18Z</updated>
	<author>
		<name>Enrico Tröger</name>
	</author>
	<content type="html">On Sun, 26 Aug 2007 12:37:19 +0200, Iago Rubio &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12339069&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iago@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, 2007-08-22 at 19:37 +0200, Enrico Tröger wrote:
&lt;br&gt;&amp;gt; &amp;gt; On Tue, 21 Aug 2007 21:05:27 +0200, Iago Rubio &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12339069&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iago@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; there is a feature in GTK which allows the user to hit
&lt;br&gt;&amp;gt; Ctrl-Shift
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; +u and then type any hexcode of an Unicode 
&lt;br&gt;&amp;gt; [snip]
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I tried it on Linux, and it worked on scintilla as long as I hold
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Ctrl + Shift while typing the Unicode.
&lt;br&gt;&amp;gt; &amp;gt; I can't get it working here, whether with cssed(0.4.0) nor Geany nor
&lt;br&gt;&amp;gt; &amp;gt; SciTE. Everytime when I press Ctrl+Shift+(any unicode) nothing
&lt;br&gt;&amp;gt; happens.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I tried it now with Scite and you're right. The cssed version I used
&lt;/div&gt;Because SciTE does set the keybinding Ctrl+Shift+U for changing the
&lt;/div&gt;selection to upper case.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; (any unicode) is:
&lt;br&gt;&amp;gt; &amp;gt; u+264d or
&lt;br&gt;&amp;gt; &amp;gt; u264d or
&lt;br&gt;&amp;gt; &amp;gt; 264d?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Actually (Ctrl+Shift)+u264d.
&lt;br&gt;And it does actually work. I don't know why I didn't get it working the
&lt;br&gt;first time I tried but now it works also in my app if I don't bind
&lt;br&gt;Ctrl-Shift-U. Thanks Iago.
&lt;br&gt;&lt;br&gt;&amp;gt; I tested it further, and scintilla only received the Shit+Ctrl key
&lt;br&gt;&amp;gt; events, and as soon as I pressed the 'u', it stops receiving any
&lt;br&gt;&amp;gt; events.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The app I used - cssed - does not manage this key binding, so I bet
&lt;br&gt;&amp;gt; it's the gtk IM module who's doing the job.
&lt;br&gt;Probably. Or maybe the Scintilla widget inherits this keybinding and the
&lt;br&gt;associated feature from the parent GtkWidget.
&lt;br&gt;&lt;br&gt;Thanks for your help.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Get my GPG key from &lt;a href=&quot;http://www.uvena.de/pub.key&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.uvena.de/pub.key&lt;/a&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12339069&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;attachment0&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/12339069/0/attachment0&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hexadecimal-Unicode-input-feature--tp12049800p12339069.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12339075</id>
	<title>Re: Re: lexer for Asymptote</title>
	<published>2007-08-26T07:00:41Z</published>
	<updated>2007-08-26T07:00:41Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=gb2312&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.3157&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY style=&quot;FONT-SIZE: 10pt; FONT-FAMILY: verdana&quot;&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;Sure. I forgotto upload it. Now 
attached.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;2007-08-26 &lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR style=&quot;WIDTH: 122px; HEIGHT: 2px&quot; align=left SIZE=2&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana color=#c0c0c0 size=2&gt;&lt;SPAN&gt;Instanton&lt;/SPAN&gt; 
&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT face=Verdana color=#000080 size=2&gt;
&lt;HR&gt;
&lt;/FONT&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发件人：&lt;/STRONG&gt; Neil Hodgson &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;发送时间：&lt;/STRONG&gt; 2007-08-26&amp;nbsp; 20:48:06 
&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;收件人：&lt;/STRONG&gt; Discussion of the Scintilla 
editing component &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;抄送：&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;STRONG&gt;主题：&lt;/STRONG&gt; Re: [scintilla] lexer for 
Asymptote &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;&lt;/FONT&gt; &lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Verdana size=2&gt;
&lt;DIV&gt;instanton:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;gt;&amp;nbsp;&lt;A href=&quot;http://www.nabble.com/file/p12289272/LexASY.cxx&amp;nbsp;LexASY.cxx&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p12289272/LexASY.cxx&amp;nbsp;LexASY.cxx&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Is&amp;nbsp;there&amp;nbsp;a&amp;nbsp;Scintilla.iface&amp;nbsp;file&amp;nbsp;for&amp;nbsp;this?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Neil&lt;/DIV&gt;
&lt;DIV&gt;_______________________________________________&lt;/DIV&gt;
&lt;DIV&gt;Scintilla-interest&amp;nbsp;mailing&amp;nbsp;list&lt;/DIV&gt;
&lt;DIV&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12339075&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/A&gt;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12339075&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;Scintilla.iface&lt;/strong&gt; (134K) &lt;a href=&quot;http://old.nabble.com/attachment/12339075/0/Scintilla.iface&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12339075.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12334576</id>
	<title>Re: lexer for Asymptote</title>
	<published>2007-08-26T06:47:31Z</published>
	<updated>2007-08-26T06:47:31Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">instanton:
&lt;br&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/file/p12289272/LexASY.cxx&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p12289272/LexASY.cxx&lt;/a&gt;&amp;nbsp;LexASY.cxx
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Is there a Scintilla.iface file for this?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12334576&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12334576.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12334577</id>
	<title>Re: Cut() does not invoke MODIFYATTEMPTREADONLY</title>
	<published>2007-08-26T06:47:21Z</published>
	<updated>2007-08-26T06:47:21Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">Chris Jones:
&lt;br&gt;&lt;br&gt;&amp;gt; My quick and dirty solution was to change the Document's CheckReadOnly()
&lt;br&gt;&amp;gt; method to public, and then add this line in at the start of the
&lt;br&gt;&amp;gt; Editor::Cut() method:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; pdoc-&amp;gt;CheckReadOnly();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; OK, committed.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12334577&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cut%28%29-does-not-invoke-MODIFYATTEMPTREADONLY-tp12283111p12334577.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12333807</id>
	<title>Re: Hexadecimal Unicode input feature?</title>
	<published>2007-08-26T04:37:19Z</published>
	<updated>2007-08-26T04:37:19Z</updated>
	<author>
		<name>Iago Rubio</name>
	</author>
	<content type="html">Sorry if this message is duplicated, but It was sent last Thursday and
&lt;br&gt;I've not seen it reaching the list.
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 2007-08-22 at 19:37 +0200, Enrico Tröger wrote:
&lt;br&gt;&amp;gt; On Tue, 21 Aug 2007 21:05:27 +0200, Iago Rubio &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12333807&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iago@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; there is a feature in GTK which allows the user to hit
&lt;br&gt;Ctrl-Shift
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; +u and then type any hexcode of an Unicode 
&lt;br&gt;[snip]
&lt;br&gt;&amp;gt; &amp;gt; I tried it on Linux, and it worked on scintilla as long as I hold
&lt;br&gt;&amp;gt; &amp;gt; Ctrl + Shift while typing the Unicode.
&lt;br&gt;&amp;gt; I can't get it working here, whether with cssed(0.4.0) nor Geany nor
&lt;br&gt;&amp;gt; SciTE. Everytime when I press Ctrl+Shift+(any unicode) nothing
&lt;br&gt;happens.
&lt;br&gt;&lt;br&gt;I tried it now with Scite and you're right. The cssed version I used is
&lt;br&gt;CVS.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; (any unicode) is:
&lt;br&gt;&amp;gt; u+264d or
&lt;br&gt;&amp;gt; u264d or
&lt;br&gt;&amp;gt; 264d?
&lt;br&gt;&lt;br&gt;Actually (Ctrl+Shift)+u264d.
&lt;br&gt;&lt;br&gt;In my case - with fedora 5 and CVS cssed - when pressing Ctrl+Shift+u
&lt;br&gt;it's written an underlined 'u' on screen, then - without releasing Ctrl
&lt;br&gt;+Shift - I type the unicode - say 264D - and then press enter.
&lt;br&gt;&lt;br&gt;The results are as you saw in the ogg file.
&lt;br&gt;&lt;br&gt;I tested it further, and scintilla only received the Shit+Ctrl key
&lt;br&gt;events, and as soon as I pressed the 'u', it stops receiving any events.
&lt;br&gt;&lt;br&gt;The app I used - cssed - does not manage this key binding, so I bet it's
&lt;br&gt;the gtk IM module who's doing the job.
&lt;br&gt;&lt;br&gt;If you need me to do any testing here, just let me know.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards.
&lt;br&gt;-- 
&lt;br&gt;Iago Rubio
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12333807&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hexadecimal-Unicode-input-feature--tp12049800p12333807.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12293202</id>
	<title>Re: Cut() does not invoke MODIFYATTEMPTREADONLY</title>
	<published>2007-08-23T06:48:16Z</published>
	<updated>2007-08-23T06:48:16Z</updated>
	<author>
		<name>Neil Hodgson</name>
	</author>
	<content type="html">Chris Jones:
&lt;br&gt;&lt;br&gt;&amp;gt; My quick and dirty solution was to change the Document's CheckReadOnly()
&lt;br&gt;&amp;gt; method to public, and then add this line in at the start of the
&lt;br&gt;&amp;gt; Editor::Cut() method:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; pdoc-&amp;gt;CheckReadOnly();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Something like this is probably correct but I'm trying to remember
&lt;br&gt;all the history around this issue - the mail archive includes a claim
&lt;br&gt;that Cut works in read-only mode and I can't now see how that could
&lt;br&gt;have been true.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12293202&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cut%28%29-does-not-invoke-MODIFYATTEMPTREADONLY-tp12283111p12293202.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12289272</id>
	<title>Re: lexer for Asymptote</title>
	<published>2007-08-23T02:11:37Z</published>
	<updated>2007-08-23T02:11:37Z</updated>
	<author>
		<name>instanton</name>
	</author>
	<content type="html">Neil,
&lt;br&gt;&lt;br&gt;I was out of reach to the net during my holidays. Now I've got a more cleaner version as seen in the attachment.
&lt;br&gt;&lt;br&gt;instanton
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Neil Hodgson wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;&amp;nbsp; &amp;nbsp;The chPrevNonWhite, continuationLine and lineEndChar variables are
&lt;br&gt;never read so can be eliminated which removes the &amp;quot;look back&amp;quot; block
&lt;br&gt;and the SCE_ASY_PREPROCESSOR block.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Neil
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;a href=&quot;http://old.nabble.com/file/p12289272/LexASY.cxx&quot; target=&quot;_top&quot;&gt;LexASY.cxx&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/lexer-for-Asymptote-tp11533401p12289272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12284289</id>
	<title>[ scintilla-Bugs-1779790 ] Problems with single-character selection at start of line</title>
	<published>2007-08-22T15:38:39Z</published>
	<updated>2007-08-22T15:38:39Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Bugs item #1779790, was opened at 2007-08-22 21:38
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1779790&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1779790&amp;group_id=2439&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: Scintilla
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Eric Promislow (ericp)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Problems with single-character selection at start of line 
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;A problem involving selections at the start of line
&lt;br&gt;in these two scenarios has been discussed on the list:
&lt;br&gt;&lt;br&gt;1. &lt;a href=&quot;http://mailman.lyra.org/pipermail/scintilla-interest/2007-August/008994.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/pipermail/scintilla-interest/2007-August/008994.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;o]&amp;lt;|&amp;gt;foo ...
&lt;br&gt;&lt;br&gt;&amp;quot;o]&amp;quot; marks the left margin
&lt;br&gt;&amp;quot;&amp;lt;|&amp;gt;&amp;quot; marks cursor position
&lt;br&gt;&lt;br&gt;Prerec: set global selection.fore to #ff00000
&lt;br&gt;&lt;br&gt;Action: press shift key and right-arrow
&lt;br&gt;&lt;br&gt;Result: selection appears, but foreground color
&lt;br&gt;remains same.
&lt;br&gt;&lt;br&gt;Expected: visible selection, foreground color should be red
&lt;br&gt;&lt;br&gt;Additional action: press shift-right-arrow again
&lt;br&gt;Result = Expected: first two chars of the line have
&lt;br&gt;the right foreground color
&lt;br&gt;&lt;br&gt;2. 
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/pipermail/scintilla-interest/2007-August/009002.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/pipermail/scintilla-interest/2007-August/009002.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;o]xy&amp;lt;|&amp;gt;z
&lt;br&gt;&lt;br&gt;Action: press shift-left-arrow
&lt;br&gt;&lt;br&gt;Result: chars &amp;quot;xy&amp;quot; are red and &amp;quot;y&amp;quot; is selected.
&lt;br&gt;&lt;br&gt;Expected: only &amp;quot;y&amp;quot; should be red and selected
&lt;br&gt;&lt;br&gt;Most likely patch at this time:
&lt;br&gt;==== scintilla/src/PositionCache.cxx#1 - scintilla/src/PositionCache.cxx ====
&lt;br&gt;@@ -341,7 +341,7 @@
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void BreakFinder::Insert(int val) {
&lt;br&gt;-	if (val &amp;gt; nextBreak) {
&lt;br&gt;+	if (val &amp;gt;= nextBreak) {
&lt;br&gt;&amp;nbsp;		for (unsigned int j = 0; j&amp;lt;saeLen; j++) {
&lt;br&gt;&amp;nbsp;			if (val == selAndEdge[j]) {
&lt;br&gt;&amp;nbsp;				return;
&lt;br&gt;&lt;br&gt;Please excuse the details. &amp;nbsp;We ran into a similar problem in Komodo, and I wanted a scintilla bug item to reference
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1779790&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1779790&amp;group_id=2439&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12284289&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Bugs-1779790---Problems-with-single-character-selection-at-start-of-line-tp12284289p12284289.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12283111</id>
	<title>Cut() does not invoke MODIFYATTEMPTREADONLY</title>
	<published>2007-08-22T14:43:48Z</published>
	<updated>2007-08-22T14:43:48Z</updated>
	<author>
		<name>Chris Jones-34</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I've been having a problem with scintilla.
&lt;br&gt;&lt;br&gt;If you open up a read-only document, and then attempt to cut some text out
&lt;br&gt;of it, nothing happens.
&lt;br&gt;If you try to paste, or just type text in, it correctly fires off the
&lt;br&gt;SCN_MODIFYATTEMPTRO notification
&lt;br&gt;&lt;br&gt;My quick and dirty solution was to change the Document's CheckReadOnly()
&lt;br&gt;method to public, and then add this line in at the start of the
&lt;br&gt;Editor::Cut() method:
&lt;br&gt;&lt;br&gt;pdoc-&amp;gt;CheckReadOnly();
&lt;br&gt;&lt;br&gt;That fixes the problem (whether it's in keeping with scintilla's design I'm
&lt;br&gt;not sure); if you could include something similar in the next release of
&lt;br&gt;Scintilla that'd be great.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12283111&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cut%28%29-does-not-invoke-MODIFYATTEMPTREADONLY-tp12283111p12283111.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12282220</id>
	<title>Re: Hexadecimal Unicode input feature?</title>
	<published>2007-08-22T11:37:26Z</published>
	<updated>2007-08-22T11:37:26Z</updated>
	<author>
		<name>Enrico Tröger</name>
	</author>
	<content type="html">On Tue, 21 Aug 2007 21:05:27 +0200, Iago Rubio &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12282220&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iago@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi Enrico,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; there is a feature in GTK which allows the user to hit Ctrl-Shift
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; +u and then type any hexcode of an Unicode character and after
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; pressing Enter, the typed character is printed. This works in
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; GtkEntrys and GtkTextViews.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I tried it on Linux, and it worked on scintilla as long as I hold
&lt;br&gt;&amp;gt; Ctrl + Shift while typing the Unicode.
&lt;br&gt;I can't get it working here, whether with cssed(0.4.0) nor Geany nor
&lt;br&gt;SciTE. Everytime when I press Ctrl+Shift+(any unicode) nothing happens.
&lt;br&gt;(any unicode) is:
&lt;br&gt;u+264d or
&lt;br&gt;u264d or
&lt;br&gt;264d?
&lt;br&gt;&lt;br&gt;&amp;gt; Check this ogg
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://iagorubio.com/scintilla/ScintillaUnicode.ogg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://iagorubio.com/scintilla/ScintillaUnicode.ogg&lt;/a&gt;&lt;br&gt;Cool, looks like what I want.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Enrico
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12282220&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hexadecimal-Unicode-input-feature--tp12049800p12282220.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12292563</id>
	<title>[ scintilla-Feature Requests-1779488 ] SCI_INCREASEINDENTATION and SCI_DECREASEINDENTATION</title>
	<published>2007-08-22T08:53:30Z</published>
	<updated>2007-08-22T08:53:30Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1779488, was opened at 2007-08-22 14:53
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779488&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779488&amp;group_id=2439&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Fan Yang (missdeer)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: SCI_INCREASEINDENTATION and SCI_DECREASEINDENTATION 
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I found that SCI_SETINDENTATION is too slower for more than 1000 lines. At the most time, we do increase or decrease the indentation only, so if SCI_INCREASEINDENTATION and SCI_DECREASEINDENTATION is provided, the performance would be improved.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779488&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779488&amp;group_id=2439&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12292563&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Feature-Requests-1779488---SCI_INCREASEINDENTATION-and-SCI_DECREASEINDENTATION-tp12292563p12292563.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12270211</id>
	<title>Regarding calltips</title>
	<published>2007-08-22T02:06:15Z</published>
	<updated>2007-08-22T02:06:15Z</updated>
	<author>
		<name>usha-5</name>
	</author>
	<content type="html">&lt;em&gt;&lt;em&gt;
&lt;div&gt;In my program of creating an editor i need to display calltips that is while debugging if keep the cursor over the variable it should show u the vale of the variable...&lt;br&gt;but i don&amp;#39;t know how to create a calltip itself in scintilla.. 
&lt;br&gt;even then i used SCI_CATTTIPSHOW,SCI_CALLTIPACTIVE AND I&amp;#39;M not getting any calltip displayed...&lt;br&gt;can anyone suggest me the basic procedures of how to get a calltip in scintilla based editor... &lt;br&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;please give me some suggestions!!very urgent&lt;/div&gt;
&lt;div&gt;thanx in advance....&lt;/div&gt;&lt;/em&gt;&lt;/em&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12270211&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Regarding-calltips-tp12270211p12270211.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12264208</id>
	<title>[ scintilla-Feature Requests-1779006 ] outside of editor modification detection</title>
	<published>2007-08-21T14:59:39Z</published>
	<updated>2007-08-21T14:59:39Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1779006, was opened at 2007-08-21 13:59
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779006&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779006&amp;group_id=2439&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Nobody/Anonymous (nobody)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: outside of editor modification detection
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;If an edited file is modified out of this editor and (file last modification time is newer than was last save), it will detect and ask that reload or not.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779006&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=352439&amp;aid=1779006&amp;group_id=2439&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12264208&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Feature-Requests-1779006---outside-of-editor-modification-detection-tp12264208p12264208.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12262227</id>
	<title>Re: Hexadecimal Unicode input feature?</title>
	<published>2007-08-21T13:05:27Z</published>
	<updated>2007-08-21T13:05:27Z</updated>
	<author>
		<name>Iago Rubio</name>
	</author>
	<content type="html">Hi Enrico,
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; there is a feature in GTK which allows the user to hit Ctrl-Shift+u
&lt;br&gt;&amp;gt; &amp;gt; and then type any hexcode of an Unicode character and after pressing
&lt;br&gt;&amp;gt; &amp;gt; Enter, the typed character is printed. This works in GtkEntrys and
&lt;br&gt;&amp;gt; &amp;gt; GtkTextViews.
&lt;br&gt;&lt;br&gt;I tried it on Linux, and it worked on scintilla as long as I hold Ctrl +
&lt;br&gt;Shift while typing the Unicode.
&lt;br&gt;&lt;br&gt;Check this ogg
&lt;br&gt;&lt;a href=&quot;http://iagorubio.com/scintilla/ScintillaUnicode.ogg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://iagorubio.com/scintilla/ScintillaUnicode.ogg&lt;/a&gt;&lt;br&gt;-- 
&lt;br&gt;Iago Rubio
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12262227&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hexadecimal-Unicode-input-feature--tp12049800p12262227.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12254660</id>
	<title>[ scintilla-Bugs-1778404 ] LaTeX Keyword/Math Mode SyntaxHL Problem</title>
	<published>2007-08-21T02:58:37Z</published>
	<updated>2007-08-21T02:58:37Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Bugs item #1778404, was opened at 2007-08-21 10:58
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1778404&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1778404&amp;group_id=2439&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: idb_winshell (idb_winshell)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: LaTeX Keyword/Math Mode SyntaxHL Problem
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;the following tiny LaTeX-file is not correctly handled by the syntax highlighting: the first $ is not recognized as the starting of math mode, everything after the second $ is displayed as math mode.
&lt;br&gt;&lt;br&gt;greets
&lt;br&gt;&amp;nbsp; &amp;nbsp;Ingo
&lt;br&gt;&lt;br&gt;\documentclass{article}
&lt;br&gt;\begin{document}
&lt;br&gt;abc\newline${x}$ abc
&lt;br&gt;line 2
&lt;br&gt;line 3
&lt;br&gt;\end{document}
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1778404&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1778404&amp;group_id=2439&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12254660&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Bugs-1778404---LaTeX-Keyword-Math-Mode-SyntaxHL-Problem-tp12254660p12254660.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12244779</id>
	<title>[ scintilla-Bugs-1777833 ] Highlighting problem with $...$</title>
	<published>2007-08-20T13:30:31Z</published>
	<updated>2007-08-20T13:30:31Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Bugs item #1777833, was opened at 2007-08-20 21:30
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1777833&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1777833&amp;group_id=2439&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: idb_winshell (idb_winshell)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Highlighting problem with $...$
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;let's save you have a LaTeX file with the following two lines:
&lt;br&gt;&lt;br&gt;$a*x=b$
&lt;br&gt;(a*x=b)
&lt;br&gt;&lt;br&gt;If you want to highlight only &amp;quot;a*x=b&amp;quot;, move the cursor in the first line between 'b$'. Press shift, hold shift all the time, press HOME, release HOME and press RIGHT. The cursor is in front of the 'a', but the '$' is still highlighted.
&lt;br&gt;&lt;br&gt;If you do that with the second line, it works. So, it seems it's a problem with the '$' with defines the math mode.
&lt;br&gt;&lt;br&gt;greets
&lt;br&gt;&amp;nbsp; Ingo
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1777833&amp;group_id=2439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=102439&amp;aid=1777833&amp;group_id=2439&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12244779&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--scintilla-Bugs-1777833---Highlighting-problem-with-%24...%24-tp12244779p12244779.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12238274</id>
	<title>Re: Hexadecimal Unicode input feature?</title>
	<published>2007-08-20T08:59:24Z</published>
	<updated>2007-08-20T08:59:24Z</updated>
	<author>
		<name>Enrico Tröger</name>
	</author>
	<content type="html">On Wed, 8 Aug 2007 11:17:30 +0200, Enrico Tröger
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12238274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enrico.troeger@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; there is a feature in GTK which allows the user to hit Ctrl-Shift+u
&lt;br&gt;&amp;gt; and then type any hexcode of an Unicode character and after pressing
&lt;br&gt;&amp;gt; Enter, the typed character is printed. This works in GtkEntrys and
&lt;br&gt;&amp;gt; GtkTextViews.
&lt;br&gt;&amp;gt; Wouldn't it be nice if Scintilla would also support this? Or is there
&lt;br&gt;Any opinions?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Get my GPG key from &lt;a href=&quot;http://www.uvena.de/pub.key&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.uvena.de/pub.key&lt;/a&gt;&lt;br&gt;Powered by Debian GNU/Linux, GnuPG and Sylpheed.
&lt;br&gt;_______________________________________________
&lt;br&gt;Scintilla-interest mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12238274&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Scintilla-interest@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mailman.lyra.org/mailman/listinfo/scintilla-interest&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Scintilla---Dev-f14246.html&quot; embed=&quot;fixTarget[14246]&quot; target=&quot;_top&quot; &gt;Scintilla - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Hexadecimal-Unicode-input-feature--tp12049800p12238274.html" />
</entry>

</feed>
