zjturner
zjturner
What's the process like for adding new features such as this? Does it depend on user contributions or can I expect that this might actually happen someday without me doing...
For the UX I was thinking that on the Solver page on the right side under Attributes, you just add one new box for Durability, one for Progress, and an...
The problem with one string is, as you say, it won’t work for cases where arguments contain spaces. Given that “i have a command line, I need to paste it...
I asked in vscode github and they said to just make an extension. That's about what I expected them to say, but I believe this is useful enough that vscode...
> > there's a lot of magic syntax in the files that isn't really explained anywhere. > > Could you elaborate on this so we can improve out docs? Any...
Can you try using the [Child Process Debugging Power Tool](http://blogs.msdn.com/b/visualstudioalm/archive/2014/11/24/introducing-the-child-process-debugging-power-tool.aspx)? I wrote this part of VsChromium before the Child Process Debugging tool was available, but now that there is an...
> Thanks for the fix! Could we do this in a way that we're not applying the dep files parsing to the error itself? Something like `if line.startswith(".") and returncode...
Actually I don't think it matters? Because the dep file itself isn't being written unless the returncode is 0. So the way the code is written today, it's possible that...
Actually I still think this won't work. If I change to this: ``` if line.startswith(".") and returncode == 0: path = remove_leading_dots(line.replace(" ", "")) if len(path) > 0: deps.append(path.strip()) continue...
I think I'm not following. This code is not parsing a depfile. It's parsing output directly from the compiler that is used to *generate* the depfile. Here's a concrete example:...