openscad-support-vscode icon indicating copy to clipboard operation
openscad-support-vscode copied to clipboard

OpenSCAD language support for VSCode

Results 12 openscad-support-vscode issues
Sort by recently updated
recently updated
newest added

Hello, There is a bug on VsCode that doesn't update the code in openscad after I saved to force the openscad update You can see that `// LCDPillar_top_height = 3.1;...

Could be useful to have a build pipeline triggered after code. 1) Create STL 2) Trigger external build script, for example something to create a gcode 3) Upload gcode somewhere...

The following is valid OpenSCAD, at least in the current preview builds: ```openscad include zcyl( d=screw_d, h=100, ); ``` Note the comma after `h=100`. Currently, this plugin highlights an error...

When collapsing a code block (such as for, if, function, module, etc.) using the down arrows on the left, it quite often collapses the wrong amount of code. I have...

Not entirely sure if this is a sensible idea or not, but I've really come to like the OpenSCAD wasm port [DSchroer/openscad-wasm](https://github.com/DSchroer/openscad-wasm), especially in [openscad/openscad-playground](https://github.com/openscad/openscad-playground). For whatever reason it also...

Hello, I know you plan on adding support for renaming symbols, but I've not seen any issue mentioning it. I'd love to see that feature added and that would improve...

First of all thanks for this extension, it's absolutely amazing! One thing that I love about using VS and this extension is that is enables a keyboard only workflow. The...

Minor formatting bug: Take example (Google-style formatting) ``` union() { difference() { circle(); square(); } } circle(); ``` Suppose you want to hide the last `circle`, like: ``` union() {...

Thanks for making this extension -- Really nice to use. The images in the pop-up function help are particularly slick, although I suspect that wasn't the difficult bit. The only...

When you have an inner module the plugin only completes the module if you use it after its declaration location, not before. ``` module topLevelModule() { //will not get innerModule...