Window not reloading after external tool

JoAlf

Member
I have configured an external tool that alters the source file. I have selected both "Save Window" and "Wait for tool" in the tools configuration options but after I call the tool the window is not reloaded.

If I uncheck the "save window" and run the tool PL/SQL-developers detects that the source file has changed and asks if I want to reload it.

I am using version 10.0.2.1697.
 
I tried the same with a "Notepad" tool, and it works fine. Can you verify how the timestamp of the file changes when the tool is done?
 
The tool I'm using is PL/sql tidy (http://psti.equinoxbase.com/).

I think the problem is that the tool finishes to fast, in less than one second. If I create a bat file that calls the tool after waiting 2 seconds it works correctly.

my bat file:
**************************
REM Wait 2 seconds
call PING 1.1.1.1 -n 1 -w 2000 >NUL

REM call pl tidy
call c:\Prg\psti\psti.exe %*
*********************************
 
Back
Top