openfl / lime-vscode-extension

Visual Studio Code extension for OpenFL and Lime projects written in Haxe
https://marketplace.visualstudio.com/items?itemName=openfl.lime-vscode-extension
MIT License
28 stars 4 forks source link

lime.executable fails because of the path name #59

Open XANOZOID opened 5 years ago

XANOZOID commented 5 years ago

It appears that because the pathname has commas, that it is not correctly being linked to in my project.

I have set it up in the .vscode/settings json:

{
    ...
    "lime.executable": "C:/HaxeToolkit/haxe/lib/lime/7,5,0/templates/bin/lime"
}

and I get this error: image Notice that the path gets cut off at the comma?

Temporary solution:

I just put the lime executable in my environment, but that's not what I wanted to do.

I suppose I could move the executable out of that folder? Not sure.

Gama11 commented 5 years ago

"lime.executable": "haxelib run lime" should work.

XANOZOID commented 5 years ago

Is this that the correct usage or should mine also work? Thanks!!

Gama11 commented 5 years ago

Yours should also work I think, I was just offering a workaround. :)