<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[vi simulator] how to highlight a word]]></title><description><![CDATA[<p dir="auto">I am trying to enhance my visimulator plugin, when I am searching the text with “/abc” or “?abc”, I want to highlight the matched words. i want to the effect to be exactly same as highlighting when double clicking on the word.</p>
<p dir="auto">Currently I only noticed <code>SCI_COLOURISE</code>. any advice?</p>
<p dir="auto">Regards,</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/12360/vi-simulator-how-to-highlight-a-word</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 16:15:51 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/12360.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 13 Sep 2016 12:55:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Mon, 30 Jan 2017 00:25:16 GMT]]></title><description><![CDATA[<p dir="auto">i was just adding my findings, in case anyone was still looking at this issue</p>
<p dir="auto">my knowledge is fairy limited, so i have not arrived to any real conclusion about the reason for the result</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21371</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21371</guid><dc:creator><![CDATA[Js jS]]></dc:creator><pubDate>Mon, 30 Jan 2017 00:25:16 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Mon, 30 Jan 2017 00:21:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7533">@Js-jS</a></p>
<p dir="auto">I, too, am confused about what you are trying to demonstrate here.  I’m more inclined to try code out if there is also a clear description about what it is doing that is odd or interesting.  After reading such a description, I can decide if I want to try the code out or not (if there is something about it that is interesting to <strong>me</strong>…).  Anyway, we kind of beat to death the “highlighting IFs” situation a couple of months ago…not sure what new there is to take away from it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21370</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21370</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Mon, 30 Jan 2017 00:21:52 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Sun, 29 Jan 2017 22:58:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7533">@Js-jS</a></p>
<p dir="auto">for me it is hard to see to whom you want to address to.<br />
May I ask you to add the name of the recipients to your post?<br />
Concerning the post, I’m not quite sure what you try to impart.<br />
Are you surprised about time differences?</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21362</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21362</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Sun, 29 Jan 2017 22:58:06 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Sun, 29 Jan 2017 22:11:53 GMT]]></title><description><![CDATA[<p dir="auto">addendum:</p>
<p dir="auto">moving the mouse during the script execution causes misses in highlighting</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21361</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21361</guid><dc:creator><![CDATA[Js jS]]></dc:creator><pubDate>Sun, 29 Jan 2017 22:11:53 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Sun, 29 Jan 2017 21:55:07 GMT]]></title><description><![CDATA[<p dir="auto">forgot to mention …</p>
<p dir="auto">open python console</p>
<p dir="auto">turning off brace matching and smart highlighting makes no difference</p>
<p dir="auto">npp 7.3.1 32 bit      windows7 64bit</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21360</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21360</guid><dc:creator><![CDATA[Js jS]]></dc:creator><pubDate>Sun, 29 Jan 2017 21:55:07 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Sun, 29 Jan 2017 21:43:41 GMT]]></title><description><![CDATA[<p dir="auto">run  this with the “if” block on screen<br />
and again with the “if” block off screen</p>
<p dir="auto">same result on “normal text” file</p>
<p dir="auto">the “if” block has to be added</p>
<p dir="auto">gets flagged as spam if i include it</p>
<pre><code>from timeit import default_timer as timer

indicator = 12  # not sure what one is best to use but this works
editor.indicSetStyle       (indicator, INDICATORSTYLE.ROUNDBOX)
editor.indicSetAlpha       (indicator,  55)
editor.indicSetOutlineAlpha(indicator, 255)

first =  726
last  = 2260 

start = timer()
for s in range( first, last, 3):
    a=s
    editor.setIndicatorCurrent(indicator)
    editor.indicatorFillRange(s, 2)

end = timer()
console.write("4:\t%f\n" % (end - start))
  
start = timer()
for s in range( first, last, 3):
    a=s
    editor.setIndicatorCurrent(indicator)
    editor.indicatorClearRange(s, 2)

end = timer()
console.write("5:\t%f\n" % (end - start))
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/21359</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21359</guid><dc:creator><![CDATA[Js jS]]></dc:creator><pubDate>Sun, 29 Jan 2017 21:43:41 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Wed, 07 Dec 2016 15:37:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3662">@Claudia-Frank</a></p>
<blockquote>
<p dir="auto">but this, at least for me, isn’t desirable</p>
</blockquote>
<p dir="auto">Oh I totally agree, it was just to prove it was caused by N++ :)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19766</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19766</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Wed, 07 Dec 2016 15:37:39 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Wed, 07 Dec 2016 15:33:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/34">@dail</a></p>
<p dir="auto">correct, if we disable smart and matching tags highlighting then it works as expected<br />
but this, at least for me, isn’t desirable.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19765</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19765</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Wed, 07 Dec 2016 15:33:42 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 23:45:04 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">another set indicator jumps in.</p>
</blockquote>
<p dir="auto">Probably the xml tag highlighting.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19747</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19747</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Tue, 06 Dec 2016 23:45:04 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 20:51:17 GMT]]></title><description><![CDATA[<p dir="auto">By the way, disabling smart highlighting doesn’t solve the issue because than another set indicator jumps in.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19742</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19742</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 06 Dec 2016 20:51:17 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 20:47:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/374">@Scott-Sumner</a>, <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/34">@dail</a></p>
<p dir="auto">I guess I found the reason. It’s basically what we already assumed. Npp is stepping in.<br />
During debugging I noticed, that sometime indicator was reset to value 29 (in such a case it was always 29),<br />
which, afaik, is used by smart highlighting.<br />
Albeit following code worked by 100 consecutive runs always, there is a potential risk that it fails again.</p>
<pre><code>endPos = editor.getTextLength()
temp = editor.findText(FINDOPTION.WHOLEWORD | FINDOPTION.MATCHCASE, 0, endPos, 'if')
editor.setIndicatorCurrent(indicator)
while temp != None:
    (s, e) = temp
    editor.indicatorFillRange(s, e - s)
    if editor.getIndicatorCurrent() != indicator:
        # print 'getIndicatorCurrent:{}'.format(editor.getIndicatorCurrent())
        editor.setIndicatorCurrent(indicator)
        editor.indicatorFillRange(s, e - s)
    temp = editor.findText(FINDOPTION.WHOLEWORD | FINDOPTION.MATCHCASE, e, endPos, 'if')
</code></pre>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19741</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19741</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 06 Dec 2016 20:47:00 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 19:19:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3662">@Claudia-Frank</a></p>
<p dir="auto">Noticed that, too…sorry I didn’t mention it.  :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19738</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19738</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Tue, 06 Dec 2016 19:19:04 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 19:15:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/374">@Scott-Sumner</a></p>
<p dir="auto">I can confirm, I run it 100 times and it always reported it correctly but there is another strange thing<br />
as soon as I put a print statement (which needs sys.stdout = console redirection)  into the while loop I always get all "if"s colored. I even can now put the setIndicatorCurrent out of the loop.</p>
<pre><code>else:
    endPos = editor.getTextLength()
    temp = editor.findText(FINDOPTION.WHOLEWORD | FINDOPTION.MATCHCASE, 0, endPos, 'if')
    editor.setIndicatorCurrent(indicator)
    console.clear()
    while temp != None:
        print temp
        (s, e) = temp
        editor.indicatorFillRange(s, e - s)
        temp = editor.findText(FINDOPTION.WHOLEWORD | FINDOPTION.MATCHCASE, e, endPos, 'if')  
print 'Done'
</code></pre>
<p dir="auto">First I thought about a timing issue but replacing the print statement with another time consuming action brings back the issue so … ???</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19737</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19737</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 06 Dec 2016 19:15:50 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 18:40:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3662">@Claudia-Frank</a></p>
<p dir="auto">At one point I had some code in there to count the "if"s so that I could make sure they were all found by the search function…and I always saw a consistent and correct count.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19736</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19736</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Tue, 06 Dec 2016 18:40:31 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 18:23:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/34">@dail</a> - thank you for clarification.</p>
<blockquote>
<p dir="auto">Yes but indicators should only get removed when editor.indicatorClearRange() is called, and assuming the Python code is only ran 1 time, then editor.indicatorClearRange() should only ever be called once…even if it is running asynchronously.</p>
</blockquote>
<p dir="auto">From my test</p>
<p dir="auto"><img src="https://camo.nodebb.org/1a65552a54b416ee8f4a23642080425b15a9ffd6?url=http%3A%2F%2Fi.imgur.com%2FU0857fU.png" alt="" class=" img-fluid img-markdown" /></p>
<p dir="auto">it looks like that some found items were not colored instead of the previous are cleared as shown<br />
by Scotts gif. To be honest, I didn’t really test if the uncolored once are reported as found - I will do so.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19734</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19734</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 06 Dec 2016 18:23:05 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 18:16:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3662">@Claudia-Frank</a></p>
<p dir="auto">Yes, I’m using Pythonscript 1.0.8.0 with Notepad++ 7.2.2.</p>
<p dir="auto">When you say your results aren’t as “bad” as mine, I presume you mean that more of the text that should be highlighted remains so after a run of the Pythonscript?  For me, I noticed that sometimes I get more “coverage” than I got for the run where I recorded the video, but it tends to run in spurts, meaning that I can’t predict how much coverage I’ll get but that it seems to be common to the previous run.  Sometimes I’ll get very good coverage (only a few pieces of text don’t get highlighted), but I have no idea what influences this situation…</p>
<p dir="auto">My “script runner” is simply a pythonscript that executes the active .py file, so nothing special there…</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19733</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19733</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Tue, 06 Dec 2016 18:16:23 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 17:47:19 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">if a synchronous action gets called it is more or less an atomic action?</p>
</blockquote>
<p dir="auto">Yes “atomic” in regards to Scintilla and Notepad++ not able to execute it’s own code.</p>
<blockquote>
<p dir="auto">In addition I thought that plugins running in their own threads, don’t they?</p>
</blockquote>
<p dir="auto">No, by default there is no threading involved. It is as simple as a function call (e.g. Notepad++ calling a plugin’s function).</p>
<blockquote>
<p dir="auto">because of the bug??</p>
</blockquote>
<p dir="auto">Yes but indicators should only get removed when <code>editor.indicatorClearRange()</code> is called, and assuming the Python code is only ran 1 time, then <code>editor.indicatorClearRange()</code> should only ever be called once…even if it is running asynchronously.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19732</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19732</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Tue, 06 Dec 2016 17:47:19 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 17:40:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/34">@dail</a></p>
<p dir="auto">I’m not sure about this, but, can we be sure that, if a synchronous action gets called it is more or<br />
less an atomic action? As far as I understood only the processor can assure atomic executions.<br />
In addition I thought that plugins running in their own threads, don’t they?</p>
<blockquote>
<p dir="auto">for example why are indicators getting removed in the example gif Scott provided.</p>
</blockquote>
<p dir="auto">:-) because of the bug?? :-) I was able to confirm that there must be a bug but my results weren’t<br />
that bad as Scotts - I assume it is related to the script runner Scott is using or …<br />
Scott you are using python script 1.0.8.0, do you?</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19731</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19731</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 06 Dec 2016 17:40:46 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 17:09:48 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">I have the feeling that lua is using some gui freeze technique</p>
</blockquote>
<p dir="auto">Yes and no. Since the Lua code runs <em>synchronously</em> there is no way that Scintilla or Notepad++ can redraw the GUI until Lua returns. So since Lua sets the indicators on multiple ranges before it returns, Scintilla only redraws once.</p>
<blockquote>
<p dir="auto">whilst python script seems to update every hit instantly.</p>
</blockquote>
<p dir="auto">If we are assuming it <em>is</em> actually running asynchronously (again not completely sure about the internals), then there is a fight between Scintilla and Python. Scintilla wants to redraw as soon as there is a change, but Python is running in a separate thread constantly updating the indicators. However this still doesn’t explain everything…for example why are indicators getting removed in the example gif Scott provided.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19729</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19729</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Tue, 06 Dec 2016 17:09:48 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Tue, 06 Dec 2016 16:57:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/374">@Scott-Sumner</a></p>
<p dir="auto">I think you found a bug.<br />
Regardless of executing via callback or “manually”, the result should always be correct and this isn’t.</p>
<p dir="auto">In regards of speed comparision, I have the feeling that lua is using some gui freeze technique<br />
(<a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/34">@dail</a> should know more about it ;-)) whilst python script seems to update every hit instantly.<br />
In addition, the python code sets the indicator every time a new “if” is found whilst lua is doing it once. I guess this is related to the asynchronous stuff because I’ve reported this some time ago and Dave mentioned that it is most likely that the python lexer is jumping in and interrupting the<br />
script coloring. To be honest, it is ok for me as I don’t have huge documents which need to be colored manually and a simple trick would be “unfocusing” the doc to speed things up.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19727</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19727</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 06 Dec 2016 16:57:34 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Mon, 05 Dec 2016 20:37:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/374">@Scott-Sumner</a> said:</p>
<blockquote>
<p dir="auto">So I wrapped the recent code in an async callback for double-click</p>
</blockquote>
<p dir="auto">I said this wrong.  It should have been “So I wrapped the recent code in <em><strong>a sync</strong></em> callback for double-click”</p>
<p dir="auto">and just to be totally clear the setup of the callback looks like this:<br />
editor.callbackSync(callback_sci_DOUBLECLICK, [SCINTILLANOTIFICATION.DOUBLECLICK])</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19707</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19707</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Mon, 05 Dec 2016 20:37:06 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Mon, 05 Dec 2016 19:46:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/34">@dail</a></p>
<p dir="auto">Ah, the sync/async thing again.  I’m sure I was thinking that if a pythonscript is run manually and not part of a callback, that it should execute correctly (since there is no way that I know of to specify sync/async when running manually).</p>
<p dir="auto">So I wrapped the recent code in an async callback for double-click, and sure enough, it runs quickly and correctly that way (after enabling the “research” branch of the ‘if’, not the “findtext” branch–as we discovered before findtext can’t be used asynchronously).  So that explains that.  What it seems to indicate, however, is that a pythonscript that is run manually (from menu or shortcut keycombo) can’t be counted on to do indicators correctly, since it apparently will be run in the wrong mode.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19706</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19706</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Mon, 05 Dec 2016 19:46:39 GMT</pubDate></item><item><title><![CDATA[Reply to [vi simulator] how to highlight a word on Mon, 05 Dec 2016 03:48:32 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">…embedding images directly…</p>
</blockquote>
<p dir="auto">You can embed images like this <code>![some text if you want](http://i.imgur.com/eyGs0WK.gif)</code>.</p>
<blockquote>
<p dir="auto">Any ideas on why the Pythonscript performs as it does?</p>
</blockquote>
<p dir="auto">If I had to guess I’d say it comes down to the asynchronous vs synchronous execution of the scripts. I’m not familiar enough with the internals of the PythonScript to know what all gets ran asynchronously (maybe everything by default?).</p>
]]></description><link>https://community.notepad-plus-plus.org/post/19691</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/19691</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Mon, 05 Dec 2016 03:48:32 GMT</pubDate></item></channel></rss>