22 Feb 2021 |
brianredbeard (redbeard) | @shookti:matrix.org, do you have a task defined to run the binary you're looking for? https://code.visualstudio.com/Docs/editor/tasks | 23:45:01 |
23 Feb 2021 |
brianredbeard (redbeard) | can anyone suggest an alternative to IntelliSense for Javascript development? I'm at the 8 hour mark of troubleshooting and am pretty unimpressed with what I'm seeing. | 00:13:46 |
brianredbeard (redbeard) | I ask because I've read through hundreds of issues at this point and generally what seems to happen is: 1) someone is having an issue with VSCode 2) they're not an expert in VSCode and thus they cannot answer the inbound questions from the developer 3) they have a round trip of 3 or 4 times trying to work that out 4) users are told ~"buzz off, your princess is in a different castle"~ "buzz off, that's a defect in a different project" (generally a project tightly integrated with VSCode, e.g. TypeScript). So when one is troubleshooting something like Intellisense, it turns into a fingerpointing match going back and forth between the VSCode and TypeScript issue trackers. | 00:27:05 |
brianredbeard (redbeard) | and i'm tired of being caught in the middle | 00:27:24 |
| shookti left the room. | 03:56:38 |
| Webert Lima (Gitter) changed their display name from Webert de Souza Lima (Gitter) to Webert Lima (Gitter). | 09:19:48 |
| Pie left the room. | 12:04:34 |
| eldoy (Vidar Eldøy) joined the room. | 14:13:00 |
eldoy (Vidar Eldøy) | Redacted or Malformed Event | 14:13:00 |
| Krishnendu-kdg (Krishnendu-kdg) joined the room. | 14:18:20 |
Krishnendu-kdg (Krishnendu-kdg) | Redacted or Malformed Event | 14:18:21 |
| jonasbits joined the room. | 18:45:35 |
24 Feb 2021 |
| Lennart left the room. | 00:20:07 |
| Anos Voldigoad X joined the room. | 17:08:52 |
| aderchox (aderchox) joined the room. | 22:58:25 |
aderchox (aderchox) | Why is there a default launch configuration for Node.js in my VSCode even though I'm in a Java project?? | 22:58:56 |
jonasbits | aderchox (aderchox): did you use the Enable (Workspace) or Disable (Workspace)? I disable all Extensions and only Enable the one i want for that saved workspace i keep my files organised. | 23:35:47 |
25 Feb 2021 |
| Anos Voldigoad X left the room. | 10:22:45 |
| thiras joined the room. | 14:00:20 |
thiras | hello. I have a problem with my debugger configuration. I've just noticed that nodejs child processes hang after closing the debugger. I had to clean them one by one a few minutes ago. Here is my configuration. Can anybody tell me what's wrong with it? Thanks in advance
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch via yarn",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "yarn",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"name": "Node Attach",
"port": 9229,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"type": "firefox",
"request": "launch",
"reAttach": true,
"name": "Launch firefox",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"pathMappings": [
{
"url": "webpack://_n_e/pages/news",
"path": "${workspaceFolder}/pages/news"
},
{
"url": "webpack://_n_e/client/index.tsx",
"path": "${workspaceFolder}/pages/news/index.tsx"
},
{
"url": "webpack://_n_e/pages/haberler",
"path": "${workspaceFolder}/pages/haberler"
},
{
"url": "webpack://_n_e/components",
"path": "${workspaceFolder}/components"
}
]
}
],
"compounds": [
{
"name": "Combined debugger",
"configurations": ["Launch via yarn", "Node Attach", "Launch firefox"]
}
]
}
| 14:02:30 |
thiras | * hello. I have a problem with my debugger configuration. I've just noticed that nodejs child processes hang after closing the debugger. I had to clean them one by one a few minutes ago. Here is my configuration. Can anybody tell me what's wrong with it? Thanks in advance
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch via yarn",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "yarn",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"name": "Node Attach",
"port": 9229,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"type": "firefox",
"request": "launch",
"reAttach": true,
"name": "Launch firefox",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"pathMappings": [
{
"url": "webpack://_n_e/pages/news",
"path": "${workspaceFolder}/pages/news"
},
{
"url": "webpack://_n_e/client/index.tsx",
"path": "${workspaceFolder}/pages/news/index.tsx"
},
{
"url": "webpack://_n_e/pages/haberler",
"path": "${workspaceFolder}/pages/haberler"
},
{
"url": "webpack://_n_e/components",
"path": "${workspaceFolder}/components"
}
]
}
],
"compounds": [
{
"name": "Combined debugger",
"configurations": ["Launch via yarn", "Node Attach", "Launch firefox"]
}
]
}
| 14:03:15 |
thiras | here is my SO question. I'll certainly upvote and mark as solution for the answer that solves the problem. https://stackoverflow.com/questions/66370233/vscode-doesnt-close-child-processes-processchild-js | 14:16:44 |
26 Feb 2021 |
| mattfysh (Matt) joined the room. | 03:26:19 |
mattfysh (Matt) | Is there an intro to the vscode repo? I'm looking to reuse the UI on a new website with my own custom backend for saving/debugging. Hoping to understand how to extract just the pieces needed for my site (e.g. previously I've been using monaco-editor-core because I don't need any of the additional language supports) | 03:26:20 |
mattfysh (Matt) | still trying to sift through the code.. trying to find how you could run vscode in a browser with no backend (e.g. you could use localStorage as a backend) | 06:23:26 |
| efimbakulin (Bakulin Efim) joined the room. | 10:31:51 |
efimbakulin (Bakulin Efim) | hey there! I have the following set up:
- Local vscode
- Remote machine with ssh access
- docker-compose up on remote machine. it serves 2 containters
- Docker extension shows me both containers are up and running
When I try to "Attach to vscode", it's only possible to attach only to one of the containers. What may be the problem? | 10:31:51 |
| nimeton set a profile picture. | 18:51:27 |
27 Feb 2021 |
| plasticmat joined the room. | 00:44:54 |
| plasticmat left the room. | 01:52:55 |