terminalEnvironment.ts ×6

Frontier kind: Code frontier

unlabeled · c_88eed18b1243

16 tests · 9802 LOC · 44 files · introduces 0 tests · 16 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
6 ranges16 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1413 ranges9802 lines · 44 files · Browse complete extent
All tests (intent)
16 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 16 introduced LOC across 6 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/terminal/node/terminalEnvironment.ts 16 introduced LOC · 6 ranges

Open complete file

71 return { type: 'failure', reason: ShellIntegrationInjectionFailureReason.FeatureTerminal };
72 }
73 > // The ignoreShellIntegration flag is passed (eg. relaunching without shell integration) terminalEnvironment.ts
74 > if (shellLaunchConfig.ignoreShellIntegration) {
75 return { type: 'failure', reason: ShellIntegrationInjectionFailureReason.IgnoreShellIntegrationFlag };
76 }
77 > // Shell integration requires Windows 10 build 18309+ (ConPTY support) terminalEnvironment.ts
78 > const windowsBuildNumber = isWindows ? await getWindowsBuildNumberAsync() : 0;
79 if (isWindows && windowsBuildNumber < 18309) {
80 return { type: 'failure', reason: ShellIntegrationInjectionFailureReason.UnsupportedWindowsBuild };
81 }
83 > const originalArgs = shellLaunchConfig.args;
84 const shell = process.platform === 'win32' ? path.basename(shellLaunchConfig.executable).toLowerCase() : path.basename(shellLaunchConfig.executable);
85 const appRoot = path.dirname(FileAccess.asFileUri('').fsPath);
93 envMixin['VSCODE_NONCE'] = options.shellIntegration.nonce;
94 }
95 > // Temporarily pass list of hardcoded env vars for shell env api terminalEnvironment.ts
96 > const scopedDownShellEnvs = ['PATH', 'VIRTUAL_ENV', 'HOME', 'SHELL', 'PWD'];
97 > if (shellLaunchConfig.shellIntegrationEnvironmentReporting) {
98 if (isWindows) {
99 const enableWindowsEnvReporting = options.windowsUseConptyDll || windowsBuildNumber >= 22631 && shell !== 'bash.exe';
105 }
106 }
108 > // Windows
109 > if (isWindows) {
110 if (shell === 'pwsh.exe' || shell === 'powershell.exe') {
111 envMixin['VSCODE_A11Y_MODE'] = options.isScreenReaderOptimized ? '1' : '0';
142 return { type: 'failure', reason: ShellIntegrationInjectionFailureReason.UnsupportedShell };
143 }
145 > // Linux & macOS
146 > switch (shell) {
147 > case 'bash': {
148 if (!originalArgs || originalArgs.length === 0) {
149 newArgs = shellIntegrationArgs.get(ShellIntegrationExecutable.Bash);