mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-20 18:38:01 +00:00
Fix typos
This commit is contained in:
@@ -128,7 +128,7 @@ export abstract class BaseTabComponent extends BaseComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shows the acticity marker on the tab header
|
* Shows the activity marker on the tab header
|
||||||
*/
|
*/
|
||||||
displayActivity (): void {
|
displayActivity (): void {
|
||||||
if (!this.hasActivity) {
|
if (!this.hasActivity) {
|
||||||
@@ -138,7 +138,7 @@ export abstract class BaseTabComponent extends BaseComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes the acticity marker from the tab header
|
* Removes the activity marker from the tab header
|
||||||
*/
|
*/
|
||||||
clearActivity (): void {
|
clearActivity (): void {
|
||||||
if (this.hasActivity) {
|
if (this.hasActivity) {
|
||||||
|
@@ -475,7 +475,7 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit
|
|||||||
|
|
||||||
let target = relative ? this.getParentOf(relative) : null
|
let target = relative ? this.getParentOf(relative) : null
|
||||||
if (!target) {
|
if (!target) {
|
||||||
// Rewrap the root container just in case the orientation isn't compatibile
|
// Rewrap the root container just in case the orientation isn't compatible
|
||||||
target = new SplitContainer()
|
target = new SplitContainer()
|
||||||
target.orientation = ['l', 'r'].includes(side) ? 'h' : 'v'
|
target.orientation = ['l', 'r'].includes(side) ? 'h' : 'v'
|
||||||
target.children = [this.root]
|
target.children = [this.root]
|
||||||
|
@@ -40,7 +40,7 @@ export class ProfilesService {
|
|||||||
) { }
|
) { }
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Methods used to interract with ProfileProvider
|
* Methods used to interact with ProfileProvider
|
||||||
*/
|
*/
|
||||||
|
|
||||||
getProviders (): ProfileProvider<Profile>[] {
|
getProviders (): ProfileProvider<Profile>[] {
|
||||||
@@ -58,7 +58,7 @@ export class ProfilesService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Methods used to interract with Profile
|
* Methods used to interact with Profile
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -206,7 +206,7 @@ export class ProfilesService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Methods used to interract with Profile Selector
|
* Methods used to interact with Profile Selector
|
||||||
*/
|
*/
|
||||||
|
|
||||||
selectorOptionForProfile <P extends Profile, T> (profile: PartialProfile<P>): SelectorOption<T> {
|
selectorOptionForProfile <P extends Profile, T> (profile: PartialProfile<P>): SelectorOption<T> {
|
||||||
@@ -332,7 +332,7 @@ export class ProfilesService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Methods used to interract with Profile/ProfileGroup/Global defaults
|
* Methods used to interact with Profile/ProfileGroup/Global defaults
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -370,7 +370,7 @@ export class ProfilesService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Methods used to interract with ProfileGroup
|
* Methods used to interact with ProfileGroup
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -97,7 +97,7 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
|
|||||||
profile: P
|
profile: P
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enables normall passthrough from session output to terminal input
|
* Enables normal passthrough from session output to terminal input
|
||||||
*/
|
*/
|
||||||
enablePassthrough = true
|
enablePassthrough = true
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user