JacquesLucke / blender_vscode

Visual Studio Code extension for Blender development.
MIT License
557 stars 76 forks source link

Need skipfiles support. #35

Open eldeesmith opened 5 years ago

eldeesmith commented 5 years ago

I work on and maintain a lot of addons for my studio, and the constant exceptions being raised by space_toolsystem_common.py make it really difficult to use the debugger in VSCode. One could argue that this is a bug in Blender- but honestly I should be able to use vscode's built in skipfiles configuration capabilities to just skip space_toolsystem_common.py entirely. Unfortunately this extension seems to bypass the default vscode configuration somehow, so skipfiles is ignored.

To see what I'm talking about, enable breakpoints on any raised exception then run Blender. The breakpoints are non-stop.

JacquesLucke commented 5 years ago

I'll look into skipfiles support. I need this for myself as well (although my problem was never as extreme as you describe it). Last time I tried, it did not work/exist. But if it exists, I should be able to use it using the extension. Do you have a link to more information about skipfile support for the python debugger?