Open Moosems opened 1 year ago
In a terminal, you can use backslashes to give multiple lines for one big command.
@Moosems can you give a screenshot? Or can you assign yourself to improve this function? I really can't image how to use it.
Is it just like:
cl /Ox /Ot /favor:blend /EHsc \
/GA /nologo /LD /DEF: plugin.def plugin.c \
/w /errorReport:none /std:c17 /D "_WINDOWS"
Yeah. In windows you use &&
but on many other systems and with bash you use \
. I'll make an implementation sometime. I'm busy this week though so I can't do nearly and programming right now.
fixed it in #31
Also needs && for windows ;).
Also needs && for windows ;).
Added it! :D
You're epic.
You're epic.
Thanks! Actally it is quite easy to add "&&"! This is my first time to work with others on my repo. I feel very accomplished. It is meaningful for me to work with a funny guy like you. You are epic too!
So, what's wrong with the latest code?
I tested a lot but found nothing
The backslash isn't removed so the terminal treats the chars as escaped chars.
What? It doesn't happen.
Can you give a screenshot or an example? @Moosems This issues is the last issues in the pr we didn't complete
I'm not with my computer this week but from memory here's what happens:
Moosems$ cd \
.
Unable to change to directory (insert escaped period char)
nothing happened...?
quite strange
I'm not with my computer this week but from memory here's what happens:
Moosems$ cd \ . Unable to change to directory (insert escaped period char)
It can't be, I wrote code:
self.longcmd += cmd.split(self.longsymbol)[0]
to cut off the \\
Still keep open it. And try to fix it when @Moosems you have computer and you are free to test.
Will do!
?