rioj7

Results 28 comments of rioj7

@arathburgos05 maybe v1.61.0 can be used to select empty folders. I have added the commands: * [`extension.commandvariable.file.openDialog`](https://marketplace.visualstudio.com/items?itemName=rioj7.command-variable#open-dialog) * [`extension.commandvariable.file.saveDialog`](https://marketplace.visualstudio.com/items?itemName=rioj7.command-variable#save-dialog)

@terryaney You have to put the arguments of the `${configExpression:projectFilePath}` in the arguments of the parent command, (the extension has no knowledge of where the `args` object is defined) ```json...

@terryaney Made a few modifications in v1.59.0 I had no trouble to get the config setting, only the variable `${workspaceFolder}` was not substituted. Certain combinations of variables where resolved. I...

@terryaney After the line with `getConfigVariable: after variable substitution: tasks.contractsProjectFile` It should show the content of the variable https://github.com/rioj7/command-variable/blob/f14a11d92f642def1df98f09d12b310ddcca32a8/extension.js#L601-L602 that means `content === undefined` Can you try to use a...

@canadaduane I don't know where the 12 originates from @reporter123 but Pull Request #20 has a possible solution

this will fix #213 I have recreated the tests from `test/collide-test.js` in a browser by implementing a very simple test runner. The original code also fails the test `forceCollide collides...

@fil It is a bit more complicated You can have a fixed X or fixed Y or both. ---- The other forces of the simulation change the `vx` and `vy`...

@belukha The 2 empty spaces are caused by the "collision" of the 2 fixed nodes. they get a `vx,vy` component https://github.com/d3/d3-force/blob/c3e73cf641813c1d6490e6acc8b8f5aa3c239ea9/src/collide.js#L53-L56 All the other nodes see a shadow version https://github.com/d3/d3-force/blob/c3e73cf641813c1d6490e6acc8b8f5aa3c239ea9/src/collide.js#L46-L47...