Autodesk-AutoCAD / AutoLispExt

Visual Studio Code Extension for AutoCAD® AutoLISP
https://marketplace.visualstudio.com/items?itemName=Autodesk.autolispext
Apache License 2.0
83 stars 30 forks source link

Interfering with non-autolisp-related workspace #231

Open vanowm opened 1 year ago

vanowm commented 1 year ago

Describe the bug I have a workspace located on network drive, with a lot of small files (thousands) When launching a debugger (which is just a Edge browser), statusbar shows "Load lisp" (which wasn't visible before), vscode starts reading files from network drive (network usage is constant 10+MB/s) and nothing happens, after few minutes it shows message that extension host was terminated 3 times. Restarting extension host doesn't help, network usage by vscode remains high and "Load lisp" still visible. That workspace has nothing to do with autolisp. Disabling AutoLispExt fixes the issue. my .code-workspace file:

{
    "folders": [
        {
            "exclude":["latest"],
            "path": "..",
            "name": "www"
        },
    ],
    "launch": {
        "version": "0.2.0",
        "configurations": [
        {
            "name": "Launch Edge",
            "request": "launch",
            "type": "msedge",
            "url": "http://192.168.0.2/${workspaceFolderBasename:www}/",
            "webRoot": "${workspaceFolder:www}",
            "outputCapture": "console",
            // "outFiles": ["${workspaceFolderBasename}"],
            "trace": true,
            "runtimeArgs": [
                    "--auto-open-devtools-for-tabs"
            ],
            "env": {
                "XDEBUG_MODE": "debug,develop",
                "XDEBUG_CONFIG": "client_port=9000"
            }
        }
        ]

    }
}

Desktop (please complete the following information):

Version: 1.78.2
Commit: b3e4e68a0bc097f0ae7907b217c1119af9e03435
Date: 2023-05-10T14:39:26.248Z
Electron: 22.5.2
Chromium: 108.0.5359.215
Node.js: 16.17.1
V8: 10.8.168.25-electron.0
OS: Windows_NT x64 10.0.19045
Sandboxed: No

AutoCAD AutoLISP Extension v1.6.1
vanowm commented 9 months ago

It's a bug, not enhancement, different priorities.