repo
stringlengths
7
64
file_url
stringlengths
81
338
file_path
stringlengths
5
257
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:25:31
2026-01-05 01:50:38
truncated
bool
2 classes
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/updater.service.ts
tabby-core/src/services/updater.service.ts
export abstract class UpdaterService { abstract check (): Promise<boolean> abstract update (): Promise<void> }
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/commands.service.ts
tabby-core/src/services/commands.service.ts
import { Inject, Injectable, Optional } from '@angular/core' import { AppService, Command, CommandContext, CommandProvider, ConfigService, MenuItemOptions, SplitTabComponent, TabContextMenuItemProvider, ToolbarButton, ToolbarButtonProvider, TranslateService } from '../api' import { SelectorService } from './selector.se...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/fileProviders.service.ts
tabby-core/src/services/fileProviders.service.ts
import { Inject, Injectable } from '@angular/core' import { TranslateService } from '@ngx-translate/core' import { FileProvider, NotificationsService, SelectorService } from '../api' @Injectable({ providedIn: 'root' }) export class FileProvidersService { /** @hidden */ private constructor ( private sel...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/locale.service.ts
tabby-core/src/services/locale.service.ts
import { Injectable, Pipe, PipeTransform } from '@angular/core' import { formatDate, registerLocaleData } from '@angular/common' import { TranslateService, MissingTranslationHandler } from '@ngx-translate/core' import { TranslateMessageFormatCompiler } from 'ngx-translate-messageformat-compiler' import localeENUS from...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/app.service.ts
tabby-core/src/services/app.service.ts
import { Injectable, Inject } from '@angular/core' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { Observable, Subject, AsyncSubject, takeUntil, debounceTime } from 'rxjs' import { BaseTabComponent } from '../components/baseTab.component' import { SplitTabComponent } from '../components/splitTab.compone...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/vault.service.ts
tabby-core/src/services/vault.service.ts
import * as crypto from 'crypto' import { promisify } from 'util' import { Injectable, NgZone } from '@angular/core' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { AsyncSubject, Subject, Observable } from 'rxjs' import { wrapPromise, serializeFunction } from '../utils' import { UnlockVaultModalComponent...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/homeBase.service.ts
tabby-core/src/services/homeBase.service.ts
import { Injectable, Inject } from '@angular/core' import * as mixpanel from 'mixpanel' import { v4 as uuidv4 } from 'uuid' import { ConfigService } from './config.service' import { PlatformService, BOOTSTRAP_DATA, BootstrapData, HostAppService } from '../api' @Injectable({ providedIn: 'root' }) export class HomeBaseS...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/docking.service.ts
tabby-core/src/services/docking.service.ts
import { Observable, Subject } from 'rxjs' export abstract class Screen { id: number name?: string } export abstract class DockingService { get screensChanged$ (): Observable<void> { return this.screensChanged } protected screensChanged = new Subject<void>() abstract dock (): void abstract ge...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/log.service.ts
tabby-core/src/services/log.service.ts
export abstract class Logger { constructor (protected name: string) { } debug (...args: any[]): void { this.doLog('debug', ...args) } info (...args: any[]): void { this.doLog('info', ...args) } warn (...args: any[]): void { this.doLog('warn', ...args) } error ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/config.service.ts
tabby-core/src/services/config.service.ts
import deepClone from 'clone-deep' import deepEqual from 'deep-equal' import { v4 as uuidv4 } from 'uuid' import * as yaml from 'js-yaml' import { Observable, Subject, AsyncSubject, lastValueFrom } from 'rxjs' import { Injectable, Inject } from '@angular/core' import { TranslateService } from '@ngx-translate/core' impo...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/services/themes.service.ts
tabby-core/src/services/themes.service.ts
import { Inject, Injectable } from '@angular/core' import { Subject, Observable } from 'rxjs' import * as Color from 'color' import { ConfigService } from '../services/config.service' import { Theme } from '../api/theme' import { PlatformService, PlatformTheme } from '../api/platform' import { NewTheme } from '../theme...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/baseTab.component.ts
tabby-core/src/components/baseTab.component.ts
import { Observable, Subject, BehaviorSubject, distinctUntilChanged, filter, debounceTime } from 'rxjs' import { EmbeddedViewRef, Injector, ViewContainerRef, ViewRef } from '@angular/core' import { RecoveryToken } from '../api/tabRecovery' import { BaseComponent } from './base.component' import { ConfigService } from '...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/tabHeader.component.ts
tabby-core/src/components/tabHeader.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, Optional, Inject, HostBinding, HostListener, NgZone } from '@angular/core' import { auditTime } from 'rxjs' import { TabContextMenuItemProvider } from '../api/tabContextMenuProvider' import { BaseTabComponent } from './bas...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/renameTabModal.component.ts
tabby-core/src/components/renameTabModal.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, ElementRef, ViewChild } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ selector: 'rename-tab-modal', templateUrl: './renameTabModal.component.pug', }) ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/promptModal.component.ts
tabby-core/src/components/promptModal.component.ts
import { Component, Input, ViewChild, ElementRef } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ templateUrl: './promptModal.component.pug', }) export class PromptModalComponent { @Input() value: string @Input() prompt: string|undefined @In...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/welcomeTab.component.ts
tabby-core/src/components/welcomeTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Injector } from '@angular/core' import { TranslateService } from '@ngx-translate/core' import { BaseTabComponent } from './baseTab.component' import { ConfigService } from '../services/config.service' import { LocaleService } fro...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/tabBody.component.ts
tabby-core/src/components/tabBody.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, ViewChild, HostBinding, ViewContainerRef, OnChanges } from '@angular/core' import { BaseTabComponent } from '../components/baseTab.component' /** @hidden */ @Component({ selector: 'tab-body', template: ` <...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/toggle.component.ts
tabby-core/src/components/toggle.component.ts
import { Component } from '@angular/core' import { NG_VALUE_ACCESSOR } from '@angular/forms' import { CheckboxComponent } from './checkbox.component' /** @hidden */ @Component({ selector: 'toggle', template: ` <div class="form-check form-switch"> <input type="checkbox" class="form-check-input" [(ngMo...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/titleBar.component.ts
tabby-core/src/components/titleBar.component.ts
import { Component, Input } from '@angular/core' import { HostWindowService } from '../api' /** @hidden */ @Component({ selector: 'title-bar', templateUrl: './titleBar.component.pug', styleUrls: ['./titleBar.component.scss'], }) export class TitleBarComponent { @Input() hideControls: boolean const...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/startPage.component.ts
tabby-core/src/components/startPage.component.ts
import { Component } from '@angular/core' import { DomSanitizer } from '@angular/platform-browser' import { HomeBaseService } from '../services/homeBase.service' import { CommandService } from '../services/commands.service' import { Command, CommandLocation } from '../api/commands' /** @hidden */ @Component({ sele...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/selfPositioning.component.ts
tabby-core/src/components/selfPositioning.component.ts
import { HostBinding, ElementRef, Component } from '@angular/core' import { BaseComponent } from './base.component' @Component({}) export abstract class SelfPositioningComponent extends BaseComponent { @HostBinding('style.left') cssLeft = '' @HostBinding('style.top') cssTop = '' @HostBinding('style.width')...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/splitTab.component.ts
tabby-core/src/components/splitTab.component.ts
import { Observable, Subject, takeWhile } from 'rxjs' import { Component, Injectable, ViewChild, ViewContainerRef, EmbeddedViewRef, AfterViewInit, OnDestroy, Injector } from '@angular/core' import { BaseTabComponent, BaseTabProcess, GetRecoveryTokenOptions } from './baseTab.component' import { TabRecoveryProvider, Reco...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
true
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/checkbox.component.ts
tabby-core/src/components/checkbox.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { NgZone, Component, Input, HostBinding, HostListener } from '@angular/core' import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms' /** @hidden */ @Component({ selector: 'checkbox', template: ` <div class="f...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/unlockVaultModal.component.ts
tabby-core/src/components/unlockVaultModal.component.ts
import { Component, ViewChild, ElementRef } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ templateUrl: './unlockVaultModal.component.pug', }) export class UnlockVaultModalComponent { passphrase: string rememberFor = 1 rememberOptions = [1, ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/base.component.ts
tabby-core/src/components/base.component.ts
import { Observable, Subscription, Subject } from 'rxjs' interface CancellableEvent { element: HTMLElement event: string handler: EventListenerOrEventListenerObject options?: boolean|AddEventListenerOptions } export class SubscriptionContainer { private subscriptions: Subscription[] = [] priva...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/transfersMenu.component.ts
tabby-core/src/components/transfersMenu.component.ts
import { Component, Input, Output, EventEmitter } from '@angular/core' import { TranslateService } from '@ngx-translate/core' import { FileDownload, FileTransfer, PlatformService } from '../api/platform' /** @hidden */ @Component({ selector: 'transfers-menu', templateUrl: './transfersMenu.component.pug', s...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/splitTabSpanner.component.ts
tabby-core/src/components/splitTabSpanner.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, HostBinding, ElementRef, Output, EventEmitter } from '@angular/core' import { SelfPositioningComponent } from './selfPositioning.component' import { SplitContainer } from './splitTab.component' /** @hidden */ @Component({...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/splitTabPaneLabel.component.ts
tabby-core/src/components/splitTabPaneLabel.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, HostBinding, ElementRef } from '@angular/core' import { HotkeysService } from '../services/hotkeys.service' import { AppService } from '../services/app.service' import { BaseTabComponent } from './baseTab.component' import...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/safeModeModal.component.ts
tabby-core/src/components/safeModeModal.component.ts
import { Component, Input } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ templateUrl: './safeModeModal.component.pug', }) export class SafeModeModalComponent { @Input() error: Error constructor ( public modalInstance: NgbActiveModal, ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/selectorModal.component.ts
tabby-core/src/components/selectorModal.component.ts
import { firstBy } from 'thenby' import { Component, Input, HostListener, ViewChildren, QueryList, ElementRef } from '@angular/core' // eslint-disable-line @typescript-eslint/no-unused-vars import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import FuzzySearch from 'fuzzy-search' import { SelectorOption } from ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/splitTabDropZone.component.ts
tabby-core/src/components/splitTabDropZone.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, HostBinding, ElementRef, Output, EventEmitter } from '@angular/core' import { AppService } from '../services/app.service' import { BaseTabComponent } from './baseTab.component' import { SelfPositioningComponent } from './s...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/appRoot.component.ts
tabby-core/src/components/appRoot.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input, HostListener, HostBinding, ViewChildren, ViewChild } from '@angular/core' import { trigger, style, animate, transition, state } from '@angular/animations' import { NgbDropdown, NgbModal } from '@ng-bootstrap/ng-bootstrap' ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/profileIcon.component.ts
tabby-core/src/components/profileIcon.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input } from '@angular/core' import { BaseComponent } from './base.component' /** @hidden */ @Component({ selector: 'profile-icon', templateUrl: './profileIcon.component.pug', styleUrls: ['./profileIcon.component.scs...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/components/windowControls.component.ts
tabby-core/src/components/windowControls.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component } from '@angular/core' import { HostWindowService } from '../api/hostWindow' import { AppService } from '../services/app.service' /** @hidden */ @Component({ selector: 'window-controls', templateUrl: './windowControls.com...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/toolbarButtonProvider.ts
tabby-core/src/api/toolbarButtonProvider.ts
/** * See [[ToolbarButtonProvider]] */ export interface ToolbarButton { /** * Raw SVG icon code */ icon?: string title: string /** * Optional Touch Bar icon ID */ touchBarNSImage?: string /** * Optional Touch Bar button label */ touchBarTitle?: string ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/commands.ts
tabby-core/src/api/commands.ts
import { BaseTabComponent } from '../components/baseTab.component' import { MenuItemOptions } from './menu' import { ToolbarButton } from './toolbarButtonProvider' export enum CommandLocation { LeftToolbar = 'left-toolbar', RightToolbar = 'right-toolbar', StartPage = 'start-page', } export class Command {...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/menu.ts
tabby-core/src/api/menu.ts
export interface MenuItemOptions { type?: 'normal' | 'separator' | 'submenu' | 'checkbox' | 'radio' label?: string sublabel?: string enabled?: boolean checked?: boolean submenu?: MenuItemOptions[] click?: () => void /** @hidden */ commandLabel?: string }
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/tabRecovery.ts
tabby-core/src/api/tabRecovery.ts
import { BaseTabComponent } from '../components/baseTab.component' import { NewTabParameters } from '../services/tabs.service' export interface RecoveryToken { [_: string]: any type: string tabIcon?: string|null tabColor?: string|null } /** * Extend to enable recovery for your custom tab. * This wor...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/platform.ts
tabby-core/src/api/platform.ts
import { MenuItemOptions } from './menu' import { Subject, Observable } from 'rxjs' /* eslint-disable @typescript-eslint/no-unused-vars */ export interface ClipboardContent { text: string html?: string } export interface MessageBoxOptions { type: 'warning'|'error' message: string detail?: string ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/mainProcess.ts
tabby-core/src/api/mainProcess.ts
export const BOOTSTRAP_DATA = 'BOOTSTRAP_DATA' export interface PluginInfo { name: string description: string packageName: string isBuiltin: boolean isLegacy: boolean version: string author: string homepage?: string path?: string info?: any } export interface BootstrapData { ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/hostWindow.ts
tabby-core/src/api/hostWindow.ts
import { Observable, Subject } from 'rxjs' export abstract class HostWindowService { /** * Fired once the window is visible */ get windowShown$ (): Observable<void> { return this.windowShown } /** * Fired when the window close button is pressed */ get windowCloseRequest$ (): Obser...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/cli.ts
tabby-core/src/api/cli.ts
export interface CLIEvent { argv: any cwd: string secondInstance: boolean } export abstract class CLIHandler { priority: number firstMatchOnly: boolean abstract handle (event: CLIEvent): Promise<boolean> }
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/hotkeyProvider.ts
tabby-core/src/api/hotkeyProvider.ts
export interface HotkeyDescription { id: string name: string } export interface Hotkey { strokes: string[] | string; // may be a sequence of strokes isDuplicate: boolean; } /** * Extend to provide your own hotkeys. A corresponding [[ConfigProvider]] * must also provide the `hotkeys.foo` config optio...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/selector.ts
tabby-core/src/api/selector.ts
export interface SelectorOption<T> { name: string description?: string group?: string result?: T icon?: string freeInputPattern?: string freeInputEquivalent?: string color?: string weight?: number callback?: (string?) => void }
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/configProvider.ts
tabby-core/src/api/configProvider.ts
/** * Extend to add your own config options */ export abstract class ConfigProvider { /** * Default values, e.g. * * ```ts * defaults = { * myPlugin: { * foo: 1 * } * } * ``` */ defaults: any = {} /** * [[Platform]] specific defaults, e.g. ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/fileProvider.ts
tabby-core/src/api/fileProvider.ts
import { Injectable } from '@angular/core' @Injectable({ providedIn: 'root' }) export abstract class FileProvider { name: string async isAvailable (): Promise<boolean> { return true } abstract selectAndStoreFile (description: string): Promise<string> abstract retrieveFile (key: string): P...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/index.ts
tabby-core/src/api/index.ts
export { BaseComponent, SubscriptionContainer } from '../components/base.component' export { BaseTabComponent, BaseTabProcess, GetRecoveryTokenOptions } from '../components/baseTab.component' export { TabHeaderComponent } from '../components/tabHeader.component' export { SplitTabComponent, SplitContainer, SplitDirectio...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/tabContextMenuProvider.ts
tabby-core/src/api/tabContextMenuProvider.ts
import { BaseTabComponent } from '../components/baseTab.component' import { MenuItemOptions } from './menu' /** * Extend to add items to the tab header's context menu */ export abstract class TabContextMenuItemProvider { weight = 0 abstract getItems (tab: BaseTabComponent, tabHeader?: boolean): Promise<Menu...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/theme.ts
tabby-core/src/api/theme.ts
/** * Extend to add a custom CSS theme */ export abstract class Theme { name: string /** * Complete CSS stylesheet */ css: string terminalBackground: string macOSWindowButtonsInsetX?: number macOSWindowButtonsInsetY?: number followsColorScheme?: boolean }
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/profileProvider.ts
tabby-core/src/api/profileProvider.ts
/* eslint-disable @typescript-eslint/no-type-alias */ /* eslint-disable @typescript-eslint/no-unused-vars */ /* eslint-disable @typescript-eslint/no-empty-function */ import { BaseTabComponent } from '../components/baseTab.component' import { NewTabParameters } from '../services/tabs.service' export interface Profile ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/api/hostApp.ts
tabby-core/src/api/hostApp.ts
import { Observable, Subject } from 'rxjs' import { Injector } from '@angular/core' import { Logger, LogService } from '../services/log.service' export enum Platform { Linux = 'Linux', macOS = 'macOS', Windows = 'Windows', Web = 'Web', } /** * Provides interaction with the main process */ export abs...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/directives/cdkAutoDropGroup.directive.ts
tabby-core/src/directives/cdkAutoDropGroup.directive.ts
import { Directive, Input, OnInit } from '@angular/core' import { CdkDropList } from '@angular/cdk/drag-drop' class FakeDropGroup { _items: Set<CdkDropList> = new Set() } /** @hidden */ @Directive({ selector: '[cdkAutoDropGroup]', }) export class CdkAutoDropGroup implements OnInit { static groups: Record<...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/directives/autofocus.directive.ts
tabby-core/src/directives/autofocus.directive.ts
import { Directive, AfterViewInit, ElementRef } from '@angular/core' /** @hidden */ @Directive({ selector: '[autofocus]', }) export class AutofocusDirective implements AfterViewInit { constructor (private el: ElementRef) { } ngAfterViewInit (): void { this.el.nativeElement.blur() setTimeou...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/directives/fastHtmlBind.directive.ts
tabby-core/src/directives/fastHtmlBind.directive.ts
import { Directive, Input, ElementRef, OnChanges } from '@angular/core' import { PlatformService } from '../api/platform' /** @hidden */ @Directive({ selector: '[fastHtmlBind]', }) export class FastHtmlBindDirective implements OnChanges { @Input() fastHtmlBind?: string constructor ( private el: El...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/directives/dropZone.directive.ts
tabby-core/src/directives/dropZone.directive.ts
import { Directive, Output, ElementRef, EventEmitter, AfterViewInit } from '@angular/core' import { DirectoryUpload, PlatformService } from '../api/platform' import './dropZone.directive.scss' /** @hidden */ @Directive({ selector: '[dropZone]', }) export class DropZoneDirective implements AfterViewInit { @Outp...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-core/src/directives/alwaysVisibleTypeahead.directive.ts
tabby-core/src/directives/alwaysVisibleTypeahead.directive.ts
import { Directive, ElementRef, AfterViewInit } from '@angular/core' /** @hidden */ @Directive({ selector: '[alwaysVisibleTypeahead]', }) export class AlwaysVisibleTypeaheadDirective implements AfterViewInit { constructor (private el: ElementRef) { } ngAfterViewInit (): void { this.el.nativeElemen...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/config.ts
tabby-settings/src/config.ts
import { ConfigProvider, Platform } from 'tabby-core' /** @hidden */ export class SettingsConfigProvider extends ConfigProvider { defaults = { configSync: { host: null, token: null, configID: null, auto: false, parts: { hotkeys: tr...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/buttonProvider.ts
tabby-settings/src/buttonProvider.ts
import { Injectable } from '@angular/core' import { ToolbarButtonProvider, ToolbarButton, AppService, HostAppService, HotkeysService, TranslateService } from 'tabby-core' import { SettingsTabComponent } from './components/settingsTab.component' /** @hidden */ @Injectable() export class ButtonProvider extends ToolbarB...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/api.ts
tabby-settings/src/api.ts
/** * Extend to add your own settings tabs */ export abstract class SettingsTabProvider { id: string icon: string title: string weight = 0 prioritized = false getComponentType (): any { return null } }
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/settings.ts
tabby-settings/src/settings.ts
import { Injectable } from '@angular/core' import { SettingsTabProvider } from './api' import { HotkeySettingsTabComponent } from './components/hotkeySettingsTab.component' import { WindowSettingsTabComponent } from './components/windowSettingsTab.component' import { VaultSettingsTabComponent } from './components/vault...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/index.ts
tabby-settings/src/index.ts
import { NgModule } from '@angular/core' import { CommonModule } from '@angular/common' import { FormsModule } from '@angular/forms' import { NgbModule } from '@ng-bootstrap/ng-bootstrap' import { InfiniteScrollModule } from 'ngx-infinite-scroll' import TabbyCorePlugin, { ToolbarButtonProvider, HotkeyProvider, ConfigP...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/hotkeys.ts
tabby-settings/src/hotkeys.ts
import { Inject, Injectable } from '@angular/core' import { HotkeyDescription, HotkeyProvider, TranslateService } from 'tabby-core' import { SettingsTabProvider } from './api' /** @hidden */ @Injectable() export class SettingsHotkeyProvider extends HotkeyProvider { hotkeys: HotkeyDescription[] = [ { ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/services/configSync.service.ts
tabby-settings/src/services/configSync.service.ts
import * as yaml from 'js-yaml' import axios from 'axios' import { Injectable } from '@angular/core' import { ConfigService, HostAppService, Logger, LogService, Platform, PlatformService } from 'tabby-core' export interface User { id: number } export interface Config { id: number name: string content:...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/settingsTabBody.component.ts
tabby-settings/src/components/settingsTabBody.component.ts
import { Component, Input, ViewContainerRef, ViewChild, ComponentFactoryResolver, ComponentRef } from '@angular/core' import { SettingsTabProvider } from '../api' /** @hidden */ @Component({ selector: 'settings-tab-body', template: '<ng-template #placeholder></ng-template>', styles: [` :host { ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/releaseNotesTab.component.ts
tabby-settings/src/components/releaseNotesTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker' import axios from 'axios' import * as marked from '../../node_modules/marked/src/marked' import { Component, Injector } from '@angular/core' import { BaseTabComponent, TranslateSe...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/vaultSettingsTab.component.ts
tabby-settings/src/components/vaultSettingsTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, HostBinding } from '@angular/core' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { BaseComponent, VaultService, VaultSecret, Vault, PlatformService, ConfigService, VAULT_SECRET_TYPE_FILE, PromptModalComponent, Vaul...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/hotkeyInputModal.component.ts
tabby-settings/src/components/hotkeyInputModal.component.ts
import { Component, Input } from '@angular/core' import { trigger, transition, style, animate } from '@angular/animations' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { HotkeysService, BaseComponent, Keystroke, ConfigService } from 'tabby-core' const INPUT_TIMEOUT = 1000 /** @hidden */ @Compone...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/configSyncSettingsTab.component.ts
tabby-settings/src/components/configSyncSettingsTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, HostBinding } from '@angular/core' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { BaseComponent, ConfigService, PromptModalComponent, HostAppService, PlatformService, NotificationsService, TranslateService } from ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/hotkeySettingsTab.component.ts
tabby-settings/src/components/hotkeySettingsTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker' import { Component, NgZone } from '@angular/core' import { ConfigService, Hotkey, HotkeyDescription, HotkeysService, HostAppService, } from 'tabby-core' _('Se...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/editProfileModal.component.ts
tabby-settings/src/components/editProfileModal.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Observable, OperatorFunction, debounceTime, map, distinctUntilChanged } from 'rxjs' import { Component, Input, ViewChild, ViewContainerRef, ComponentFactoryResolver, Injector } from '@angular/core' import { NgbActiveModal } from '@ng-bootst...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/showSecretModal.component.ts
tabby-settings/src/components/showSecretModal.component.ts
import { Component, Input } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { NotificationsService, VaultFileSecret } from 'tabby-core' /** @hidden */ @Component({ templateUrl: './showSecretModal.component.pug', }) export class ShowSecretModalComponent { @Input() title: ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/editProfileGroupModal.component.ts
tabby-settings/src/components/editProfileGroupModal.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Component, Input } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { ConfigProxy, ProfileGroup, Profile, ProfileProvider, PlatformService, TranslateService } from 'tabby-core' /** @hidden */ @Compone...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/settingsTab.component.ts
tabby-settings/src/components/settingsTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker' import * as yaml from 'js-yaml' import { debounce } from 'utils-decorators/dist/esm/debounce/debounce' import { Component, Inject, Input, HostBinding, Injector } from '@angular/co...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/windowSettingsTab.component.ts
tabby-settings/src/components/windowSettingsTab.component.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { debounce } from 'utils-decorators/dist/esm/debounce/debounce' import { Component, HostBinding, Inject, NgZone, Optional } from '@angular/core' import { DockingService, ConfigService, Theme, HostAppService, Platform, ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/setVaultPassphraseModal.component.ts
tabby-settings/src/components/setVaultPassphraseModal.component.ts
import { Component, ViewChild, ElementRef } from '@angular/core' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ templateUrl: './setVaultPassphraseModal.component.pug', }) export class SetVaultPassphraseModalComponent { passphrase: string showPassphrase = false @...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/profilesSettingsTab.component.ts
tabby-settings/src/components/profilesSettingsTab.component.ts
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker' import deepClone from 'clone-deep' import { Component, Inject } from '@angular/core' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { ConfigService, HostAppService, Profile, SelectorService, ProfilesService, PromptModalComponent, Platfo...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-settings/src/components/multiHotkeyInput.component.ts
tabby-settings/src/components/multiHotkeyInput.component.ts
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { HotkeyInputModalComponent } from './hotkeyInputModal.component' import { Hotkey } from 'tabby-core' import deepEqual from 'deep-equal' /** @hidden */ @Component...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/src/entry.ts
app/src/entry.ts
import 'zone.js' import 'core-js/proposals/reflect-metadata' import 'rxjs' import './global.scss' import './toastr.scss' // Importing before @angular/* import { findPlugins, initModuleLookup, loadPlugins } from './plugins' import { enableProdMode, NgModuleRef, ApplicationRef } from '@angular/core' import { enableDeb...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/src/app.module.ts
app/src/app.module.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { ApplicationRef, NgModule } from '@angular/core' import { BrowserModule } from '@angular/platform-browser' import { ToastrModule } from 'ngx-toastr' export function getRootModule (plugins: any[]) { const imports = [ BrowserModul...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/src/plugins.ts
app/src/plugins.ts
import * as fs from 'mz/fs' import * as path from 'path' import * as remote from '@electron/remote' import { PluginInfo } from '../../tabby-core/src/api/mainProcess' import { PLUGIN_BLACKLIST } from './pluginBlacklist' const nodeModule = require('module') // eslint-disable-line @typescript-eslint/no-var-requires cons...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/src/entry.preload.ts
app/src/entry.preload.ts
import 'v8-compile-cache' import '../lib/lru' import 'source-sans-pro/source-sans-pro.css' import 'source-code-pro/source-code-pro.css' import '@fortawesome/fontawesome-free/css/solid.css' import '@fortawesome/fontawesome-free/css/brands.css' import '@fortawesome/fontawesome-free/css/regular.css' import '@fortawesome/f...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/src/pluginBlacklist.ts
app/src/pluginBlacklist.ts
export const PLUGIN_BLACKLIST = [ 'terminus-shell-selector', // superseded by profiles 'terminus-scrollbar', // now useless 'terminus-clickable-links', // now bundled with Tabby 'tabby-clickable-links', // now bundled with Tabby 'terminus-clickable-ips', // broken, functionality now bundled with Tab...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/config.ts
app/lib/config.ts
import * as fs from 'fs' import * as path from 'path' import * as yaml from 'js-yaml' import { writeFile } from 'atomically' export const configPath = path.join(process.env.TABBY_CONFIG_DIRECTORY!, 'config.yaml') const legacyConfigPath = path.join(process.env.TABBY_CONFIG_DIRECTORY!, '../terminus', 'config.yaml') e...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/window.ts
app/lib/window.ts
import * as glasstron from 'glasstron' import { autoUpdater } from 'electron-updater' import { Subject, Observable, debounceTime } from 'rxjs' import { BrowserWindow, app, ipcMain, Rectangle, Menu, screen, BrowserWindowConstructorOptions, TouchBar, nativeImage, WebContents, nativeTheme } from 'electron' import Electron...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/utfSplitter.ts
app/lib/utfSplitter.ts
const partials = [ [0b110, 5, 0], [0b1110, 4, 1], [0b11110, 3, 2], ] export class UTF8Splitter { private internal = Buffer.alloc(0) write (data: Buffer): Buffer { this.internal = Buffer.concat([this.internal, data]) let keep = 0 for (const [pattern, shift, maxOffset] of pa...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/sentry.ts
app/lib/sentry.ts
const { init } = String(process.type) === 'main' ? require('@sentry/electron/dist/main') : require('@sentry/electron/dist/renderer') const SENTRY_DSN = 'https://4717a0a7ee0b4429bd3a0f06c3d7eec3@sentry.io/181876' let release = null try { release = require('electron').app.getVersion() } catch { release = require...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/lru.ts
app/lib/lru.ts
import LRU from 'lru-cache' import * as fs from 'fs' const lru = new LRU({ max: 256, maxAge: 250 }) const origLstat = fs.realpathSync.bind(fs) // NB: The biggest offender of thrashing realpathSync is the node module system // itself, which we can't get into via any sane means. require('fs').realpathSync = function (p)...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/pluginManager.ts
app/lib/pluginManager.ts
import { promisify } from 'util' export class PluginManager { npm: any npmReady?: Promise<void> async ensureLoaded (): Promise<void> { if (!this.npmReady) { this.npmReady = new Promise(resolve => { const npm = require('npm') npm.load(err => { ...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/portable.ts
app/lib/portable.ts
import * as path from 'path' import * as fs from 'fs' import * as electron from 'electron' const appPath = path.dirname(electron.app.getPath('exe')) const portableData = path.join(appPath, 'data') if (fs.existsSync(portableData)) { console.log('reset user data to ' + portableData) electron.app.setPath('userDa...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/cli.ts
app/lib/cli.ts
import { app } from 'electron' export function parseArgs (argv: string[], cwd: string): any { if (argv[0].includes('node')) { argv = argv.slice(1) } return require('yargs/yargs')(argv.slice(1)) .usage('tabby [command] [arguments]') .command('open [directory]', 'open a shell in a di...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/app.ts
app/lib/app.ts
import { app, ipcMain, Menu, Tray, shell, screen, globalShortcut, MenuItemConstructorOptions, WebContents } from 'electron' import promiseIpc from 'electron-promise-ipc' import * as remote from '@electron/remote/main' import { exec } from 'mz/child_process' import * as path from 'path' import * as fs from 'fs' import {...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/pty.ts
app/lib/pty.ts
import * as nodePTY from 'node-pty' import { v4 as uuidv4 } from 'uuid' import { ipcMain } from 'electron' import { Application } from './app' import { UTF8Splitter } from './utfSplitter' import { Subject, debounceTime } from 'rxjs' class PTYDataQueue { private buffers: Buffer[] = [] private delta = 0 priv...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/app/lib/index.ts
app/lib/index.ts
import { app, ipcMain, Menu, dialog } from 'electron' // set userData Path on portable version import './portable' // set defaults of environment variables import 'dotenv/config' process.env.TABBY_PLUGINS ??= '' process.env.TABBY_CONFIG_DIRECTORY ??= app.getPath('userData') import 'v8-compile-cache' import 'source-...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/profiles.ts
tabby-local/src/profiles.ts
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker' import deepClone from 'clone-deep' import { Injectable, Inject } from '@angular/core' import { ProfileProvider, NewTabParameters, ConfigService, SplitTabComponent, AppService, PartialProfile } from 'tabby-core' import { TerminalTabComponent } from '....
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/config.ts
tabby-local/src/config.ts
import { ConfigProvider, Platform } from 'tabby-core' /** @hidden */ export class TerminalConfigProvider extends ConfigProvider { defaults = { terminal: { autoOpen: true, useConPTY: true, environment: {}, setComSpec: false, }, } platformDefau...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/session.ts
tabby-local/src/session.ts
import * as fs from 'mz/fs' import * as fsSync from 'fs' import { Injector } from '@angular/core' import { HostAppService, ConfigService, WIN_BUILD_CONPTY_SUPPORTED, isWindowsBuild, Platform, BootstrapData, BOOTSTRAP_DATA, LogService } from 'tabby-core' import { BaseSession } from 'tabby-terminal' import { SessionOptio...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/buttonProvider.ts
tabby-local/src/buttonProvider.ts
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Injectable } from '@angular/core' import { ToolbarButtonProvider, ToolbarButton, TranslateService } from 'tabby-core' import { TerminalService } from './services/terminal.service' /** @hidden */ @Injectable() export class ButtonProvider ex...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/api.ts
tabby-local/src/api.ts
import { BaseTerminalProfile } from 'tabby-terminal' export interface Shell { id: string name: string command: string args?: string[] env: Record<string, string> /** * Base path to which shell's internal FS is relative * Currently used for WSL only */ fsBase?: string cw...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/recoveryProvider.ts
tabby-local/src/recoveryProvider.ts
import { Injectable } from '@angular/core' import { TabRecoveryProvider, NewTabParameters, RecoveryToken } from 'tabby-core' import { TerminalTabComponent } from './components/terminalTab.component' /** @hidden */ @Injectable() export class RecoveryProvider extends TabRecoveryProvider<TerminalTabComponent> { asyn...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false
Eugeny/tabby
https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/cli.ts
tabby-local/src/cli.ts
import * as path from 'path' import * as fs from 'mz/fs' import { Injectable } from '@angular/core' import { CLIHandler, CLIEvent, AppService, ConfigService, HostWindowService, ProfilesService, NotificationsService } from 'tabby-core' import { TerminalService } from './services/terminal.service' @Injectable() export c...
typescript
MIT
5c6008deacd3b1fcd12d0a78f5e645db43beec89
2026-01-04T15:27:36.904744Z
false