visual-studio-code

How to attach to remote gdb with vscode?

荒凉一梦 提交于 2021-01-20 16:05:23
问题 I want to do remote C/C++ gdb debug with vscode. I use "Native Debug" extension where I do configuration. Here is my launch.json configuration { "type": "gdb", "request": "launch", "name": "Launch Program (SSH)", "target": "./hello", "cwd": "/home/root/test1/", "ssh": { "host": "192.168.15.130", "cwd": "/home/root/test1/", "password": "", "user": "root" } And at target I run gdbserver localhost:2000 ./hello Unfortunately after I can't sill connect with remote device to debug. Is there someone

List of all available commands in VSCode

懵懂的女人 提交于 2021-01-20 16:03:03
问题 Where can I find the list of all commands available in VSCode and their description ? I'm only aware of these sources: In the official docs: This list which only seems to include a subset of Visual Studio Code commands that you might use with vscode.commands.executeCommand API ( why is this only a subset of the full list? ) This other list in the keybindings doc, which also only seems to include a subset of all commands available ( I suppose those tied to a default keybinding? ) In the editor

List of all available commands in VSCode

こ雲淡風輕ζ 提交于 2021-01-20 16:01:21
问题 Where can I find the list of all commands available in VSCode and their description ? I'm only aware of these sources: In the official docs: This list which only seems to include a subset of Visual Studio Code commands that you might use with vscode.commands.executeCommand API ( why is this only a subset of the full list? ) This other list in the keybindings doc, which also only seems to include a subset of all commands available ( I suppose those tied to a default keybinding? ) In the editor

List of all available commands in VSCode

╄→尐↘猪︶ㄣ 提交于 2021-01-20 16:01:12
问题 Where can I find the list of all commands available in VSCode and their description ? I'm only aware of these sources: In the official docs: This list which only seems to include a subset of Visual Studio Code commands that you might use with vscode.commands.executeCommand API ( why is this only a subset of the full list? ) This other list in the keybindings doc, which also only seems to include a subset of all commands available ( I suppose those tied to a default keybinding? ) In the editor

List of all available commands in VSCode

大城市里の小女人 提交于 2021-01-20 16:00:59
问题 Where can I find the list of all commands available in VSCode and their description ? I'm only aware of these sources: In the official docs: This list which only seems to include a subset of Visual Studio Code commands that you might use with vscode.commands.executeCommand API ( why is this only a subset of the full list? ) This other list in the keybindings doc, which also only seems to include a subset of all commands available ( I suppose those tied to a default keybinding? ) In the editor

Removing [ts] errors from JS files In VS Code

老子叫甜甜 提交于 2021-01-20 14:57:10
问题 I get these TypeScript errors VS Code while I'm working in JS files. Is there anything I can do to disable this? I have put this in my settings and did not solve the issue: "typescript.validate.enable": false The error can been seen here 回答1: There's a GitHub issue that discusses the [ts] token from the errors in a bit more detail. The most relevant comment to this discussion is: Yes. The TypeScript extension powers our javascript intellisense which is why you see [TS] in your js file. That

Removing [ts] errors from JS files In VS Code

放肆的年华 提交于 2021-01-20 14:57:10
问题 I get these TypeScript errors VS Code while I'm working in JS files. Is there anything I can do to disable this? I have put this in my settings and did not solve the issue: "typescript.validate.enable": false The error can been seen here 回答1: There's a GitHub issue that discusses the [ts] token from the errors in a bit more detail. The most relevant comment to this discussion is: Yes. The TypeScript extension powers our javascript intellisense which is why you see [TS] in your js file. That

Removing [ts] errors from JS files In VS Code

醉酒当歌 提交于 2021-01-20 14:55:10
问题 I get these TypeScript errors VS Code while I'm working in JS files. Is there anything I can do to disable this? I have put this in my settings and did not solve the issue: "typescript.validate.enable": false The error can been seen here 回答1: There's a GitHub issue that discusses the [ts] token from the errors in a bit more detail. The most relevant comment to this discussion is: Yes. The TypeScript extension powers our javascript intellisense which is why you see [TS] in your js file. That

Removing [ts] errors from JS files In VS Code

大兔子大兔子 提交于 2021-01-20 14:53:58
问题 I get these TypeScript errors VS Code while I'm working in JS files. Is there anything I can do to disable this? I have put this in my settings and did not solve the issue: "typescript.validate.enable": false The error can been seen here 回答1: There's a GitHub issue that discusses the [ts] token from the errors in a bit more detail. The most relevant comment to this discussion is: Yes. The TypeScript extension powers our javascript intellisense which is why you see [TS] in your js file. That

Visual Studio Code status bar color

你离开我真会死。 提交于 2021-01-20 14:08:58
问题 Visual Studio Code's default status bar color is blue and I find it quite distracting. I used this extension to change the color but it has stopped working after the 1.10.2 update. 回答1: You can change the colour of the statusbar by editing the user settings by adding these lines of code in it: "workbench.colorCustomizations": { "statusBar.background" : "#1A1A1A", "statusBar.noFolderBackground" : "#212121", "statusBar.debuggingBackground": "#263238" } 回答2: 1) Gonna save 30 minutes of time to