trypear / pearai-app

An Open Sourced AI-Powered Text Editor. A fork of VSCode and Continue.
https://trypear.ai
Other
541 stars 87 forks source link

Add what `AuxiliaryBar` is to `extensions/pearai-extension/doc/architecture.md` #80

Open cwclancy opened 1 month ago

cwclancy commented 1 month ago

Context

reviewing https://github.com/trypear/pearai-app/pull/64/files it's a little confusing to not just know what the aux bar is.

Solution

I think it probably makes sense to have a picture of VSCode with the various components labeled on it

cc: @Trifall

Trifall commented 1 month ago

I am pretty sure these are the Layout Parts and their corresponding visual elements.

// src/vs/workbench/services/layout/browser/layoutService.ts:21
export const enum Parts {
    TITLEBAR_PART = 'workbench.parts.titlebar',
    BANNER_PART = 'workbench.parts.banner',
    ACTIVITYBAR_PART = 'workbench.parts.activitybar',
    SIDEBAR_PART = 'workbench.parts.sidebar',
    PANEL_PART = 'workbench.parts.panel',
    AUXILIARYBAR_PART = 'workbench.parts.auxiliarybar',
    EDITOR_PART = 'workbench.parts.editor',
    STATUSBAR_PART = 'workbench.parts.statusbar'
}

Screenshot_20240524_172136

Fryingpannn commented 1 month ago

@Trifall Nice grid display!! We gon add this to the docs