From b52f0d8dd7f58f26cafd61a5518301dc9bc2a41d Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Fri, 8 Nov 2024 17:29:40 -0800 Subject: [PATCH] misc --- src/vs/workbench/contrib/void/browser/registerSettings.ts | 1 + src/vs/workbench/contrib/void/browser/registerSidebar.ts | 5 +++-- .../browser/sidebar/{SidebarChat.tsx => !SidebarChat.tsx} | 0 .../sidebar/{SidebarSettings.tsx => !SidebarSettings.tsx} | 0 ...{SidebarThreadSelector.tsx => !SidebarThreadSelector.tsx} | 0 5 files changed, 4 insertions(+), 2 deletions(-) rename src/vs/workbench/contrib/void/browser/sidebar/{SidebarChat.tsx => !SidebarChat.tsx} (100%) rename src/vs/workbench/contrib/void/browser/sidebar/{SidebarSettings.tsx => !SidebarSettings.tsx} (100%) rename src/vs/workbench/contrib/void/browser/sidebar/{SidebarThreadSelector.tsx => !SidebarThreadSelector.tsx} (100%) diff --git a/src/vs/workbench/contrib/void/browser/registerSettings.ts b/src/vs/workbench/contrib/void/browser/registerSettings.ts index 0862197c..c588c346 100644 --- a/src/vs/workbench/contrib/void/browser/registerSettings.ts +++ b/src/vs/workbench/contrib/void/browser/registerSettings.ts @@ -272,6 +272,7 @@ class VoidSettingsService extends Disposable implements IVoidSettingsService { constructor( @IStorageService private readonly _storageService: IStorageService, @IEncryptionService private readonly _encryptionService: IEncryptionService, + // @ISecretStorageService private readonly _secretStorageService: ISecretStorageService, // could have used this, but it's clearer the way it is (+ slightly different eg StorageTarget.USER) ) { super() } diff --git a/src/vs/workbench/contrib/void/browser/registerSidebar.ts b/src/vs/workbench/contrib/void/browser/registerSidebar.ts index 01ac8b52..07e1f3f1 100644 --- a/src/vs/workbench/contrib/void/browser/registerSidebar.ts +++ b/src/vs/workbench/contrib/void/browser/registerSidebar.ts @@ -36,8 +36,9 @@ import { IKeybindingService } from '../../../../platform/keybinding/common/keybi import { IOpenerService } from '../../../../platform/opener/common/opener.js'; import { ITelemetryService } from '../../../../platform/telemetry/common/telemetry.js'; import { IHoverService } from '../../../../platform/hover/browser/hover.js'; -import { IVoidSettingsService } from './registerSettings.js'; +// import { IVoidSettingsService } from './registerSettings.js'; import { IEditorService } from '../../../services/editor/common/editorService.js'; +// import { IClipboardService } from '../../../../platform/clipboard/common/clipboardService.js'; @@ -69,10 +70,10 @@ class VoidSidebarViewPane extends ViewPane { // Void: @IVoidSidebarStateService private readonly _voidSidebarStateService: IVoidSidebarStateService, @IThreadHistoryService private readonly _threadHistoryService: IThreadHistoryService, - @IVoidSettingsService private readonly _voidSettingsService: IVoidSettingsService, // TODO chat service ) { super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService, hoverService) + } diff --git a/src/vs/workbench/contrib/void/browser/sidebar/SidebarChat.tsx b/src/vs/workbench/contrib/void/browser/sidebar/!SidebarChat.tsx similarity index 100% rename from src/vs/workbench/contrib/void/browser/sidebar/SidebarChat.tsx rename to src/vs/workbench/contrib/void/browser/sidebar/!SidebarChat.tsx diff --git a/src/vs/workbench/contrib/void/browser/sidebar/SidebarSettings.tsx b/src/vs/workbench/contrib/void/browser/sidebar/!SidebarSettings.tsx similarity index 100% rename from src/vs/workbench/contrib/void/browser/sidebar/SidebarSettings.tsx rename to src/vs/workbench/contrib/void/browser/sidebar/!SidebarSettings.tsx diff --git a/src/vs/workbench/contrib/void/browser/sidebar/SidebarThreadSelector.tsx b/src/vs/workbench/contrib/void/browser/sidebar/!SidebarThreadSelector.tsx similarity index 100% rename from src/vs/workbench/contrib/void/browser/sidebar/SidebarThreadSelector.tsx rename to src/vs/workbench/contrib/void/browser/sidebar/!SidebarThreadSelector.tsx