workspace: Implement Extended Terminal Option (#26211)
Closes #10211 Closes #7575 Screenshot of feature:  Screenshot of proposed menu:  Screenshot of proposed menu closed:  Release Notes: - Configuration of bottom_dock_layout in settings.json - Layout Mode button in Title Bar - 4 different layout modes for the bottom dock: contained (default), full (extends below both docks), left-aligned, right-aligned (extends only below the respective dock) --------- Co-authored-by: Mikayla Maki <mikayla.c.maki@gmail.com>
This commit is contained in:
parent
2f5c662c42
commit
1df01eabfe
6 changed files with 409 additions and 79 deletions
|
@ -10,8 +10,8 @@ use strum::{EnumIter, EnumString, IntoStaticStr};
|
|||
pub enum IconName {
|
||||
Ai,
|
||||
AiAnthropic,
|
||||
AiBedrock,
|
||||
AiAnthropicHosted,
|
||||
AiBedrock,
|
||||
AiDeepSeek,
|
||||
AiEdit,
|
||||
AiGoogle,
|
||||
|
@ -61,6 +61,7 @@ pub enum IconName {
|
|||
CircleOff,
|
||||
Clipboard,
|
||||
Close,
|
||||
Cloud,
|
||||
Code,
|
||||
Cog,
|
||||
Command,
|
||||
|
@ -74,22 +75,22 @@ pub enum IconName {
|
|||
CountdownTimer,
|
||||
CursorIBeam,
|
||||
Dash,
|
||||
DatabaseZap,
|
||||
Debug,
|
||||
DebugBreakpoint,
|
||||
DebugContinue,
|
||||
DebugDisabledBreakpoint,
|
||||
DebugDisabledLogBreakpoint,
|
||||
DebugDisconnect,
|
||||
DebugIgnoreBreakpoints,
|
||||
DebugLogBreakpoint,
|
||||
DebugPause,
|
||||
DebugContinue,
|
||||
DebugStepOver,
|
||||
DebugRestart,
|
||||
DebugStepBack,
|
||||
DebugStepInto,
|
||||
DebugStepOut,
|
||||
DebugStepBack,
|
||||
DebugRestart,
|
||||
Debug,
|
||||
DebugStepOver,
|
||||
DebugStop,
|
||||
DebugDisconnect,
|
||||
DebugLogBreakpoint,
|
||||
DatabaseZap,
|
||||
Delete,
|
||||
Diff,
|
||||
Disconnected,
|
||||
|
@ -99,18 +100,18 @@ pub enum IconName {
|
|||
Envelope,
|
||||
Eraser,
|
||||
Escape,
|
||||
ExpandVertical,
|
||||
Exit,
|
||||
ExternalLink,
|
||||
ExpandUp,
|
||||
ExpandDown,
|
||||
ExpandUp,
|
||||
ExpandVertical,
|
||||
ExternalLink,
|
||||
Eye,
|
||||
File,
|
||||
FileCode,
|
||||
FileCreate,
|
||||
FileDelete,
|
||||
FileDoc,
|
||||
FileDiff,
|
||||
FileDoc,
|
||||
FileGeneric,
|
||||
FileGit,
|
||||
FileLock,
|
||||
|
@ -133,16 +134,17 @@ pub enum IconName {
|
|||
GenericMaximize,
|
||||
GenericMinimize,
|
||||
GenericRestore,
|
||||
Github,
|
||||
Globe,
|
||||
GitBranch,
|
||||
GitBranchSmall,
|
||||
Github,
|
||||
Globe,
|
||||
Hash,
|
||||
HistoryRerun,
|
||||
Indicator,
|
||||
Info,
|
||||
InlayHint,
|
||||
Keyboard,
|
||||
Layout,
|
||||
Library,
|
||||
LightBulb,
|
||||
LineHeight,
|
||||
|
@ -155,7 +157,6 @@ pub enum IconName {
|
|||
Maximize,
|
||||
Menu,
|
||||
MessageBubbles,
|
||||
Cloud,
|
||||
Mic,
|
||||
MicMute,
|
||||
Microscope,
|
||||
|
@ -227,8 +228,8 @@ pub enum IconName {
|
|||
Tab,
|
||||
Terminal,
|
||||
TextSnippet,
|
||||
ThumbsUp,
|
||||
ThumbsDown,
|
||||
ThumbsUp,
|
||||
Trash,
|
||||
TrashAlt,
|
||||
Triangle,
|
||||
|
@ -247,10 +248,10 @@ pub enum IconName {
|
|||
ZedAssistant,
|
||||
ZedAssistantFilled,
|
||||
ZedPredict,
|
||||
ZedPredictUp,
|
||||
ZedPredictDown,
|
||||
ZedPredictDisabled,
|
||||
ZedPredictDown,
|
||||
ZedPredictError,
|
||||
ZedPredictUp,
|
||||
ZedXCopilot,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue