File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
src/vs/platform/terminal/node Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,12 @@ export function getShellIntegrationInjection(
176
176
case 'fish' : {
177
177
// The injection mechanism used for fish is to add a custom dir to $XDG_DATA_DIRS which
178
178
// is similar to $ZDOTDIR in zsh but contains a list of directories to run from.
179
- const oldDataDirs = env ?. XDG_DATA_DIRS ?? '/usr/local/share:/usr/share' ;
180
- const newDataDir = path . join ( appRoot , 'out/vs/workbench/contrib/terminal/browser/media/fish_xdg_data' ) ;
181
- envMixin [ 'XDG_DATA_DIRS' ] = `${ oldDataDirs } :${ newDataDir } ` ;
182
- addEnvMixinPathPrefix ( options , envMixin ) ;
183
- return { newArgs : undefined , envMixin } ;
179
+ // const oldDataDirs = env?.XDG_DATA_DIRS ?? '/usr/local/share:/usr/share';
180
+ // const newDataDir = path.join(appRoot, 'out/vs/workbench/contrib/terminal/browser/media/fish_xdg_data');
181
+ // envMixin['XDG_DATA_DIRS'] = `${oldDataDirs}:${newDataDir}`;
182
+ // addEnvMixinPathPrefix(options, envMixin);
183
+ // return { newArgs: undefined, envMixin };
184
+ return undefined ;
184
185
}
185
186
case 'pwsh' : {
186
187
if ( ! originalArgs || arePwshImpliedArgs ( originalArgs ) ) {
You can’t perform that action at this time.
0 commit comments