Hello!

I want to know if my G-code will work if instead of this:

G90;
G1 F9000 X220 Y215;
G1 F1000 X232;
G4 P700;
G1 F9000 X220

I write it like this:

G90; G1 F9000 X220 Y215; G1 F1000 X232; G4 P700; G1 F9000 X220;

The reason is because I want to use Cura plug-in to search and replace. So I will replace tons of lines for this single line, so I'll not be able to separate them.

Much appreciated!

UPDATED: Yes, it does work, I made a quick test. It also works if, after all the line of code, there's a lost number there, like:

G90; G1 F9000 X220 Y215; G1 F1000 X232; G4 P700; G1 F9000 X220;2

This is helpful since I can replace ";LAYER:" without referencing a single layer specifically.