Skip to content

Commit

Permalink
Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Jan 19, 2023
1 parent 9faf9eb commit 8ac79be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import { IContextKey } from 'vs/platform/contextkey/common/contextkey';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage';
import { activeContrastBorder } from 'vs/platform/theme/common/colorRegistry';
import { attachListStyler } from 'vs/platform/theme/common/styler';
import { IThemeService } from 'vs/platform/theme/common/themeService';
import { ISuggestController } from 'vs/workbench/contrib/terminal/browser/terminal';
import { TerminalStorageKeys } from 'vs/workbench/contrib/terminal/common/terminalStorageKeys';
import { ITerminalAddon, Terminal } from 'xterm';
import { getListStyles } from 'vs/platform/theme/browser/defaultStyles';

const enum ShellIntegrationOscPs {
// TODO: Pull from elsewhere
Expand Down Expand Up @@ -319,7 +319,7 @@ export class SuggestAddon extends Disposable implements ITerminalAddon, ISuggest
this._instantiationService.createInstance(PersistedWidgetSize),
{}
));
this._register(attachListStyler(this._suggestWidget.list, this._themeService, {
this._suggestWidget.list.style(getListStyles({
listInactiveFocusBackground: editorSuggestWidgetSelectedBackground,
listInactiveFocusOutline: activeContrastBorder
}));
Expand Down

0 comments on commit 8ac79be

Please sign in to comment.