<?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[Random Tabulator Removal in Combination with Autohotkey]]></title><description><![CDATA[<p dir="auto">Hello everybody,</p>
<p dir="auto">I found a really strange behaviour when Autohotkey sends keystrokes to Notepad++.</p>
<p dir="auto">I use quite a lot little scripts with Autohotkey to create preformed text modules with shortkeys.<br />
e.g. i type “contact” + space and the preformed text structure<br />
[Contact]	NAME	COMPANY	POSITION	PHONE	MAIL	COMMENTS	<br />
is send to my document to have placeholders to save contact information in a document.<br />
In Autohotkey this is done with the three following lines:</p>
<p dir="auto">::contact ::<br />
Send, [Contact]{tab}NAME{tab}COMPANY{tab}POSITION{tab}PHONE{tab}MAIL{tab}COMMENTS{tab}<br />
return</p>
<p dir="auto">It works perfectly in all programms (e.g. editor, word, excel …) but in Notepad++ I use this shortkey 6 times and get 6 different outputs:</p>
<p dir="auto">[Contact]	NAME	COMPANY	POSITION	PHONE	MAIL	COMMENTS	<br />
[Contact]	NAMECOMPANY	POSITIONPHONEMAIL	COMMENTS	<br />
[Contact]	NAMECOMPANYPOSITION	PHONE	MAILCOMMENTS<br />
[Contact]	NAMECOMPANYPOSITIONPHONE	MAILCOMMENTS<br />
[Contact]	NAMECOMPANYPOSITIONPHONEMAIL	Comments<br />
[Contact]	NAMECOMPANYPOSITIONPHONEMAILCOMMENTS</p>
<p dir="auto">For the first time everything is fine but already for the second usage three tabulators are missing.  in the third line one missing tabulator is there again but two others are missing. The more often I use this hotkey the less tabulators I get. More than 6 hotkeys results in just one tabulator (the first one).</p>
<p dir="auto">Do you have any idea why this happens??<br />
It is not dependent on the “paste” speed of Autohtokey. I added breaks of 100ms after each word and tab but still they were deleted.</p>
<p dir="auto">ps: in line 5 even the capitalization changes in the word “comments”.</p>
<p dir="auto">Do you have any Idea what is wrong?</p>
<p dir="auto">Thanks in advance, Jan</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/17915/random-tabulator-removal-in-combination-with-autohotkey</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Jul 2026 06:27:34 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/17915.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 08 Jul 2019 06:25:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Random Tabulator Removal in Combination with Autohotkey on Mon, 08 Jul 2019 09:43:52 GMT]]></title><description><![CDATA[<p dir="auto">WOW, I never expected this and really appreciate your help!</p>
<p dir="auto">This is the solution of course!</p>
<p dir="auto">100ms break inbetween was too less to see this popup.</p>
<p dir="auto">Thanks a lot!</p>
<p dir="auto">If anybody has a similar problem, I found a different workaround.<br />
Instead of sending each keystroke after another its also possible to load the string into the clipboard and paste it in one piece.<br />
Looks like this:</p>
<p dir="auto">::contact ::<br />
clipboard = [Contact]<code>tNAME</code>tCOMPANY<code>tPOSITION</code>tPHONE<code>tMAIL</code>tCOMMENTS<code>t</code>r<br />
Send, ^v<br />
return</p>
]]></description><link>https://community.notepad-plus-plus.org/post/45161</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/45161</guid><dc:creator><![CDATA[Jan H.]]></dc:creator><pubDate>Mon, 08 Jul 2019 09:43:52 GMT</pubDate></item><item><title><![CDATA[Reply to Random Tabulator Removal in Combination with Autohotkey on Mon, 08 Jul 2019 09:32:30 GMT]]></title><description><![CDATA[<p dir="auto">Jan H. I tried it and reproduced your results. Then I tried typing and tabbing manually which showed that after the first line Notepad++ shows a drop down menu intelli-sense type prompt which has to be dismissed by a tab or esc before another tab will be actually entered in the text.</p>
<p dir="auto">I suggest you try the following hotstring in Notepad++</p>
<p dir="auto">::contact ::<br />
Send, [Contact]{esc}{tab}NAME{esc}{tab}COMPANY{esc}{tab}POSITION{esc}{tab}PHONE{esc}{tab}MAIL{esc}{tab}COMMENTS{esc}{tab}<br />
Return</p>
]]></description><link>https://community.notepad-plus-plus.org/post/45160</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/45160</guid><dc:creator><![CDATA[ludamo]]></dc:creator><pubDate>Mon, 08 Jul 2019 09:32:30 GMT</pubDate></item></channel></rss>