Strange SendRaw behavior

Discussion, questions and support.
Post Reply
User avatar
Oblomov
Posts: 184
Joined: Mar 4th, ’19, 19:44

Post by Oblomov » Jun 13th, ’20, 13:30

Hello,

As determined through an earlier thread, the correct usage of SendRaw in certain situations:
viewtopic.php?f=4&t=863

I have been using this command for Notepad++:

Code: Select all

SendRaw, % "[\r\n]+"
Which has been working quite well, for a fairly long time. However today, I noticed that the command has suddenly taken on some very strange inconsistencies/inconsistency.

At first, the only input it was giving me was:
rn+
That, plus it executed a smaller command, along with it, which was very odd...

I then tried to:
• Restart FK
• Enable/disable FK
• CtrlAltDel
• Termination of an AHK script

However, only a PC restart helped, partially. As now, I get:
\r\n]+ and not the full [\r\n]+ that I always got before...

I 've now added an extra [, at the beginning, i.e.:

Code: Select all

SendRaw, % "[[\r\n]+"
Which is fine, I mean as long as it works, it's whatever. But yeah, still really curious how something like this could have happened in the first place 🤔

Kind regards,
...
User avatar
Tom
Posts: 796
Joined: Nov 24th, ’15, 23:39

Post by Tom » Jun 13th, ’20, 14:01

If you use Type: Command, the output is always [\r\n]+.
If this is not the case, there must be a conflict with some other commands/settings.
User avatar
Oblomov
Posts: 184
Joined: Mar 4th, ’19, 19:44

Post by Oblomov » Jun 13th, ’20, 19:29

Tom wrote: Jun 13th, ’20, 14:01 If you use Type: Command, the output is always [\r\n]+.
If this is not the case, there must be a conflict with some other commands/settings.
It's type Command, but yeah, my only guess is that something is somehow corrupted, and that there is seemingly no way of resetting it... probably gonna try to copy over my stuff to a new portable installation, except settings, just to try anyway
Post Reply