yazd / DKit

DKit is a package to aid developing D programs using Sublime Text 3.
62 stars 23 forks source link

Tested on Windows: issues and notes #7

Closed vuaru closed 10 years ago

vuaru commented 10 years ago

Hi,

I'm on Windows, and here is my experience so far:

server_path = path.join(dcd_path, 'dcd-server.exe')
client_path = path.join(dcd_path, 'dcd-client.exe')
sublime-text-3\Data\Packages
"d\\src\\phobos",
"d\\src\\druntime\\import",
yazd commented 10 years ago

I fixed the extension issue on Windows and added your notes for the installation instructions in this commit https://github.com/yazd/DKit/commit/4520449628274921a4ae56ef87ee1f400fe46b6c.

Regarding the command window that shows, I attempted to fix it in my last commit. Please check if it still shows or not.

Thanks for the feedback.

vuaru commented 10 years ago

I had to change the various Popen's from

Popen(' '.join(args), shell=True)

to

Popen(args, shell=True)

And now it works.

With shell=False, I didn't need to remove the joins. Weird.

yazd commented 10 years ago

Can you try now?

vuaru commented 10 years ago

Works.