Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Mel Davis

  1. M

    TCC suitability for Javascript/Typescript development

    @rconn, I did not see your reply until after I posted my last message. Sorry. I look forward to the new release. Thanks! After the new release, if I re-run that JS library's unittests under TCC, I hope it's okay if it post again with any significant issues. Just know that the /s may...
  2. M

    TCC suitability for Javascript/Typescript development

    Thanks to everyone for all your suggestions. Honestly, the best thing about TCC is its active support forum. I think your suggestions would work if I were trying to run a batch file from the command-line. But, in the particular case I mentioned above, I'm running an executable. Eventually...
  3. M

    TCC suitability for Javascript/Typescript development

    Thanks, Charles. Your active support in the forums is why TCC is so great to use. I don't think the first suggestion would work well, given how NPM and node modules are structured. (It works a lot like python libraries. They're automatically downloaded from npmjs.com and adhere to a...
  4. M

    TCC suitability for Javascript/Typescript development

    I'm not sure exactly sure what you are asking. I have not explicitly set the %comspec% variable. Was that the question? JS/TS development tools is almost all batch files. If a run a command from the TCC command line, TCC will handle it.
  5. M

    TCC suitability for Javascript/Typescript development

    I have always enjoyed using TCC in software development when I was working mainly in C++ or matlab. There were a few hiccups, nothing I couldn't work around. But now that I need to work with Javascript/Typescript, the workarounds are harder or impossible to find. I know that TCC's mission is...
  6. M

    Please explain TCMD's ANSI x3.64 support

    Thanks. That worked. I was confused about the ANSIWin10 meaning. I mistakenly thought that ANSIWIN10=YES ==> Use Windows ANSI console support ==> TCC would automatically enable Windows ANSI console support (via SetConsoleMode). Sorry to waste your time but thanks for clarifying it for me...
  7. M

    Please explain TCMD's ANSI x3.64 support

    I tried that and it's not working. I checked the tcmd.ini file. [4NT] has ANSI=No, [TakeCommand] has ANSI=Yes. There is no ANSIWin10 entry. If I enable ANSI in TCC, (TCMD ANSI can be on or off) I can get color codes for internal commands, nothing for external commands. If I disable ANSI for...
  8. M

    Please explain TCMD's ANSI x3.64 support

    Would someone explain what ANSI x3.64 support TCC/TCMD provides? I've read "TCC v22 & the Windows 10 Console" but I'm still confused. Does TCMD support Color Escape Sequences generated by external commands? I have a test program that generates color codes but I've not found any...
  9. M

    Is the sdk.zip file corrupted?

    Ahh, yes. I tried another computer and it worked. Thank you.
  10. M

    Is the sdk.zip file corrupted?

    I downloaded a new copy, from the same URL. It reports the same errors.
  11. M

    Is the sdk.zip file corrupted?

    @vefatica. Smart! I wish I had thought about using tcmd's built-in commands to test it.
  12. M

    Is the sdk.zip file corrupted?

    Thanks, Tea-Time.
  13. M

    Is the sdk.zip file corrupted?

    I've downloaded the the plugin sdk archive 3 times. Windows will not extract all the contents. It fails with Unspecified Error. WinRAR also fails to extract it and reports that the file is corrupt. I ran checkdisk on my hard drive and it reported no errors. Just in case, I'm running a...
  14. M

    WAD Set statements in () causes problems

    Yes, I agree. TCMD seems to be adding a space that is not present in the command. There is a newline after the 'set a=b' not a space. But TCMD sets a equal to 'b '. It adds a space. ( set a=b ) But, even if there were trailing spaces, I think TCMD should trim them. I think CMD trims...
  15. M

    WAD Set statements in () causes problems

    For anyone else having difficulty running existing scripts (like MS's or Anaconda's), a workaround is to change any conditional or loop constructs like ( set A=B ) to ( set A=B () )
Back
Top