-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow customization of build tool tasks #310
Conversation
Thank @anton-matosov! Can you rebase to reduce the noise on the diff view? |
Definitely. my bad |
Add `args` parameter to all build tool tasks that allows customization in the workspaces's tasks.json by users Implement generic task of `ros` type Add `roscore` and `roslaunch` commands using `ros` task that allows user to run and customize them in `tasks.json` Add `roscore and `roslaunch` problem matchers that allow corresponding tasks to run in background
5d75759
to
b0dcf8d
Compare
@@ -11,6 +11,5 @@ | |||
"search.exclude": { | |||
"out": true // set this to false to include "out" folder in search results | |||
}, | |||
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version | |||
"python.pythonPath": "C:\\opt\\python27amd64\\python.exe" | |||
"typescript.tsdk": "./node_modules/typescript/lib" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the automatic upgrade of settings by corresponding vscode extensions
@anton-matosov, LGTM. Is it ready for merge too? |
I'm testing this on Windows. @anton-matosov can you update your branch so that the PR is in sync? |
Merged in latest master and updated docs |
Implements #305
Add args parameter to all build tool tasks that allows customization in the workspaces's tasks.json by users
Implement generic task named
ros
Add
roscore
androslaunch
commands usingros
task that allows user to run and customize them in tasks.json