You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve the CommandsJSON Object to better handle multilines commands.
Details
Before intelligent commands, we were handling multilines (or multi-instructions) commands by combining them using && characters. So a command was looking like this:
With the introduction of the new command's editor, we are now allowing multiple lines in command's definition. In order to do that, we have to replace && by \n. But the way we are handling it into the JSON object is making the command hard to read.
We need to improve the representation of the Command JSON object so that it will stay readable and better formatted.
The proposal would be the following:
Goals
Improve the
Commands
JSON Object to better handle multilines commands.Details
Before intelligent commands, we were handling multilines (or multi-instructions) commands by combining them using
&&
characters. So a command was looking like this:With the introduction of the new command's editor, we are now allowing multiple lines in command's definition. In order to do that, we have to replace
&&
by\n
. But the way we are handling it into the JSON object is making the command hard to read.We need to improve the representation of the Command JSON object so that it will stay readable and better formatted.
The proposal would be the following:
Linked issues:
#4274
The text was updated successfully, but these errors were encountered: