<?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[Just started using Notepad++... What is SYN?]]></title><description><![CDATA[<p dir="auto">I have (of course) been using regular Notepad and just started using Notepad++.  I have been using another keyboard macro program, AutoHotKey, which works great everywhere else… but in Notepad++, when I try to do a paste into a normal text file… here’s what the (Ctrl-Alt-W) macro produces here:<br />
(Haven’t crossed paths with him yet, but maybe that’ll happen this weekend?)<br />
(3/11/2017, 8:44:33  agh always a good way to spend a weekend)<br />
In Notepad++ instead I’m getting:<br />
)<br />
(	    	    ()<br />
(where the square box here shows in Notepad++ as a white-on-black “SYN”).   Anybody have an idea of what’s going on?<br />
Here’s what the Ctrl-Alt-W macro definition looks like for AutoHotKey:</p>
<p dir="auto">^!w::<br />
Send {Home}{Home}{Space}{Space}(^V{Enter}{End}{End}{Up}{Up}{Up}{End}){Right}{Space}{Space}({End}{Space}{Space}{Delete}{End}){Home}{Down}<br />
return</p>
<p dir="auto">So anyhow, it looks like the ^V (which sends a Ctrl-V, or paste) isn’t pasting the saved clipboard text under Notepad++… ??</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/13440/just-started-using-notepad-what-is-syn</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 21:40:02 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/13440.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 12 Mar 2017 12:25:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Just started using Notepad++... What is SYN? on Sat, 05 Jan 2019 23:37:21 GMT]]></title><description><![CDATA[<p dir="auto">I am using Autohotkey, and what worked for me is adding an ‘$’ before the hotkey as in ‘$^v::’ (Ctrl+v). Read about the prefix ‘$’ here: <a href="https://www.autohotkey.com/docs/Hotkeys.htm" rel="nofollow ugc">https://www.autohotkey.com/docs/Hotkeys.htm</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/38083</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/38083</guid><dc:creator><![CDATA[Aladin ZAIR]]></dc:creator><pubDate>Sat, 05 Jan 2019 23:37:21 GMT</pubDate></item><item><title><![CDATA[Reply to Just started using Notepad++... What is SYN? on Mon, 02 Apr 2018 06:06:52 GMT]]></title><description><![CDATA[<p dir="auto">I do not use AutoHotKey but I also get this SYN thing when I try to paste with Ctrl+V. I have been using Npp for years and this is, I believe, the first time it happens.</p>
<p dir="auto">What could it be and what should I do to get back the default behavior?</p>
<p dir="auto">Many thanks!</p>
<hr />
<p dir="auto">Windows 7 SP1 (x86),<br />
Npp v7.5.6</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31390</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31390</guid><dc:creator><![CDATA[Ahu Lee]]></dc:creator><pubDate>Mon, 02 Apr 2018 06:06:52 GMT</pubDate></item><item><title><![CDATA[Reply to Just started using Notepad++... What is SYN? on Tue, 14 Mar 2017 17:56:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/8012">@Gordon-E-Peterson-II</a>, I had such a problem in the past using autohotkey to paste into np++. I remember being advised to instead of using ^v, use send {ctrl down}v{ctrl up}. It is supposed to be more reliable<br />
I remember that it did help, but I havent used it in a while so I can’t verify now</p>
<p dir="auto">Let us know if that works</p>
]]></description><link>https://community.notepad-plus-plus.org/post/22696</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/22696</guid><dc:creator><![CDATA[DaveyD]]></dc:creator><pubDate>Tue, 14 Mar 2017 17:56:58 GMT</pubDate></item><item><title><![CDATA[Reply to Just started using Notepad++... What is SYN? on Tue, 14 Mar 2017 07:12:18 GMT]]></title><description><![CDATA[<p dir="auto">It turns out that I occasionally have [SYN] show up when I’m editing. I just do Ctrl-Z for undo move on.  It happened again and so this time I paid more attention to what I’d just done.</p>
<ul>
<li>Ctrl-V is paste</li>
<li>Shift-Ctrl-V allows you to type a [SYN] character (character code \x16) in Notepad++</li>
</ul>
<p dir="auto">Thus it seems that while you intended to transmit Ctrl-V via AutoHotKey that Shift-Ctrl-V was sent instead.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/22677</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/22677</guid><dc:creator><![CDATA[mkupper]]></dc:creator><pubDate>Tue, 14 Mar 2017 07:12:18 GMT</pubDate></item><item><title><![CDATA[Reply to Just started using Notepad++... What is SYN? on Mon, 13 Mar 2017 20:57:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/8012">@Gordon-E.-Peterson-II</a>   I suspect you are using Ctrl-V to paste in the AutoHotKey script.  Instead of that, try using Alt-E-P to select the Edit/Paste dropdown menu item.</p>
<p dir="auto">Typing Ctrl-V on a keyboard is “paste” for many applications including npp.  Ctrl and a letter key also is used to generate the ASCII control codes.  Ctrl-A is code 0x01, ctrl-B is code 0x02, ctrl-C is code 0x03, …,  ctrl-V is code 0x16.  ASCII code 0x16 is also known as the SYN or SYNC character. See the Wikipedia &lt;a href=“<a href="https://en.wikipedia.org/wiki/ASCII" rel="nofollow ugc">https://en.wikipedia.org/wiki/ASCII</a>”&gt;ASCII&lt;/a&gt; article for the list of control codes.</p>
<p dir="auto">Npp displays the three letter abbreviations for ASCII control codes when those characters appear in a file.  As Ctrl-V is normally “paste” you can’t enter that directly in a file in most circumstances.  It’s not clear why an AutoHotKey generated Ctrl-V is being interpreted as a desire to add an ASCII 0x16 SYN in the file rather than being handled as a paste.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/22664</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/22664</guid><dc:creator><![CDATA[mkupper]]></dc:creator><pubDate>Mon, 13 Mar 2017 20:57:18 GMT</pubDate></item><item><title><![CDATA[Reply to Just started using Notepad++... What is SYN? on Sun, 12 Mar 2017 16:33:32 GMT]]></title><description><![CDATA[<p dir="auto">See <a href="https://en.wikipedia.org/wiki/Synchronous_Idle" rel="nofollow ugc">https://en.wikipedia.org/wiki/Synchronous_Idle</a>, n++ displays such ascii control characters as special symbols.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/22619</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/22619</guid><dc:creator><![CDATA[chcg]]></dc:creator><pubDate>Sun, 12 Mar 2017 16:33:32 GMT</pubDate></item></channel></rss>