tomblind / local-lua-debugger-vscode

Local Lua Debugger for VSCode
MIT License
104 stars 26 forks source link

Export environment vars? #48

Closed Shadowblitz16 closed 2 years ago

Shadowblitz16 commented 2 years ago

I need to export SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR=0 for love2d on linux. How would I do this?

tomblind commented 2 years ago

You can pass environment variables by setting them in launch.json:

"env": {"SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR": "0"},