microsoft / microsoft/vscode-cpptools

[Feature request] Send user settings of terminal choice during launch (e.g. user setting: terminal.external....)

Open
#1,940 4 comments 1 reaction 0 assignees View on GitHub

Nobody has claimed this yet.

debugger Feature Request
Dominant language
TypeScript
Stars
6.2k
Forks
1.7k
Avg merge
14h 46m
Merged PRs (30d)
61

Description

I am trying to launch a debug session. Unfortunately, gnome-terminal fails to launch. However, xterm works fine. I am unable to get Visual studio code to use Xterm. Any Help Appreciated.

User Settings:

{
"workbench.colorTheme": "Quiet Light",
"editor.fontSize": 14,
"julia.executablePath": "/usr/local/bin/julia",
"files.associations": {
"*.jl": "julia"
},

"editor.fontFamily": "'DejaVu Sans Mono'",
"editor.fontWeight": "bold",
"editor.suggestFontSize": 11,
"clang.executable": "/srllc/tp/clang/v6.0.0/bin",
"clang.cxxflags": [
    "--std=c++11"
],
"terminal.external.linuxExec": "/bin/xterm"

}

"name": "test",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build",
"environment": [ {"Name":"LD_LIBRARY_PATH", "Value":"/opt/gcc-7.3.0/lib64"} ],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"logging": {
"engineLogging": true
},
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],

Debug from the launch:

: (207) LaunchOptions<LocalLaunchOptions xmlns='http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014'
1: (221) LaunchOptions ExePath='a.out'
1: (221) LaunchOptions WorkingDirectory='build'
1: (221) LaunchOptions ExeArguments='2018 0 2 0 5 2018 0 2 10'
1: (221) LaunchOptions MIMode='gdb'
1: (221) LaunchOptions MIDebuggerPath='/usr/bin/gdb'
1: (221) LaunchOptions WaitDynamicLibLoad='false'
1: (221) LaunchOptions>
1: (221) LaunchOptions
1: (221) LaunchOptions -enable-pretty-printing
1: (221) LaunchOptions
1: (221) LaunchOptions
....................................
.............................................
1: (221) LaunchOptions
1: (301) TempFile=/tmp/Microsoft-MIEngine-fifo-o7umkzct.ydv
1: (301) TempFile=/tmp/Microsoft-MIEngine-fifo-rchtx3yv.2pf
1: (301) TempFile=/tmp/Microsoft-MIEngine-fifo-t6pq9ig2.q4j
1: (357) term-stderr:Option "--title" is deprecated and might be removed in a later version of gnome-terminal.
1: (364) term-stderr:Error constructing proxy for org.gnome.Terminal:/org/gnome/Terminal/Factory0: Error spawning command line 'dbus-launch --autolaunch=36e4fff9ca604cbc9c6743ae4bf5904b --binary-syntax --close-stderr': Child process exited with code 1

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reviewing the terminal.external.linuxExec setting in settings.json and the launch configuration in launch.json, then compare them with the reported debug launch output. Trace where the selected terminal is handled during a C/C++ debug launch. Done means the configured terminal choice is passed through and xterm launches instead of gnome-terminal.

Written by the indexing model from the issue text.

Assessment

Tech stack
cpp, linux, typescript, vscode
Domain
devtools, operating-systems
Issue type
Feature
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.