Replies: 3 comments 7 replies
-
We may create multiple launch profiles, one with all other extensions disabled (current), one vice versa. |
Beta Was this translation helpful? Give feedback.
-
How about removing the Of course it's possible to have local changes that are not committed to github, but this can get quite annoying when switching between branches and lead to accidental commits to the github repo (as happened with |
Beta Was this translation helpful? Give feedback.
-
On a similar note: how is the launch performance/delay for you when debugging the vscode-R extension from source? For me, there's always a noticeable delay, even when using webpack in watch mode. To solve this, I disabled webpack during development by changing the following lines in package.json "main": "./out/extension",
"scripts": {
"watch": "tsc --watch -p ."
} and in the launch.json: "preLaunchTask": "npm: watch" With these changes, the Extension Development Host window opens pretty much instantaneously (apart from the very first time after starting vscode). If other people experience the same delay (and the fix works for them), we could consider adjusting the deployment process to only use webpack before publishing. |
Beta Was this translation helpful? Give feedback.
-
Hey all,
I was hoping to get some input on how people are working on vscode-R contributions - I'm particularly interested if you use WSL!
One issue I've been having, is that the debug task (F5) for the extension has the arg
"--disable-extensions"
. Now, it makes sense that this is the case, as you don't want other extensions to interfere with testing. However, this also means that the WSL extension is disabled! Up until now, I've been manually removing the argument during testing, and putting it back before pushing to the repo (which gets pretty tedious after a while). Has anyone run into the same issue, or had ways around it?I'm not sure if this qualifies as an issue or not, so I'm starting here for now.
Beta Was this translation helpful? Give feedback.
All reactions