separate color schemes per profile - fixes #5885, fixes #4593, fixes #3516, fixes #7457, fixes #765

This commit is contained in:
Eugene Pankov
2023-02-04 19:51:16 +01:00
parent e0181973f7
commit 69d884e164
32 changed files with 192 additions and 106 deletions

View File

@@ -1,4 +1,4 @@
import { Profile } from 'tabby-core'
import { BaseTerminalProfile } from 'tabby-terminal'
export interface Shell {
id: string
@@ -44,7 +44,7 @@ export interface SessionOptions {
runAsAdministrator?: boolean
}
export interface LocalProfile extends Profile {
export interface LocalProfile extends BaseTerminalProfile {
options: SessionOptions
}