I have been playing with the NppExec code to get it to play nicely with cygterm. In particular, process execution and managment there after, as well as correcting the output, to not display uneeded \n's. This has been tricky as one solution fixs cygterm, but breaks command.exe and vice versa.
Anyone else working on this or have any suggestions?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have already found a little bug in NppExec plugin. When I try to execute php script using php.exe file localed in C:\Program Files\VertrigoServ\Php\php.exe -l $(FULL_CURRENT_PATH) the console give me this communicate:
C:\Program Files\VertrigoServ\Php\php.exe -l C:\Program Files\VertrigoServ\www\all\pewuesz_light\class\AuthClass.php
Process started >>>
Could not open input file: C:\Program<<< Process finished.
================ READY ================
probably problem is in the space mark by "Program Files", Someone could fix that.
by the way good work
regards!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have been playing with the NppExec code to get it to play nicely with cygterm. In particular, process execution and managment there after, as well as correcting the output, to not display uneeded \n's. This has been tricky as one solution fixs cygterm, but breaks command.exe and vice versa.
Anyone else working on this or have any suggestions?
I have already found a little bug in NppExec plugin. When I try to execute php script using php.exe file localed in C:\Program Files\VertrigoServ\Php\php.exe -l $(FULL_CURRENT_PATH) the console give me this communicate:
C:\Program Files\VertrigoServ\Php\php.exe -l C:\Program Files\VertrigoServ\www\all\pewuesz_light\class\AuthClass.php
Process started >>>
Could not open input file: C:\Program<<< Process finished.
================ READY ================
probably problem is in the space mark by "Program Files", Someone could fix that.
by the way good work
regards!
replace
C:\Program Files\VertrigoServ\Php\php.exe -l $(FULL_CURRENT_PATH)
with
C:\Program Files\VertrigoServ\Php\php.exe -l "$(FULL_CURRENT_PATH)"