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-local/src/settings.ts | tabby-local/src/settings.ts | import { Injectable } from '@angular/core'
import { HostAppService, Platform } from 'tabby-core'
import { SettingsTabProvider } from 'tabby-settings'
import { ShellSettingsTabComponent } from './components/shellSettingsTab.component'
/** @hidden */
@Injectable()
export class ShellSettingsTabProvider extends SettingsT... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/index.ts | tabby-local/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 { ToastrModule } from 'ngx-toastr'
import TabbyCorePlugin, { HostAppService, ToolbarButtonProvider, TabRecoveryProvider, Con... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/tabContextMenu.ts | tabby-local/src/tabContextMenu.ts | import { Inject, Injectable, Optional } from '@angular/core'
import { ConfigService, BaseTabComponent, TabContextMenuItemProvider, MenuItemOptions, ProfilesService, TranslateService } from 'tabby-core'
import { TerminalTabComponent } from './components/terminalTab.component'
import { TerminalService } from './services/... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/hotkeys.ts | tabby-local/src/hotkeys.ts | import { Injectable } from '@angular/core'
import { HotkeyDescription, HotkeyProvider, TranslateService } from 'tabby-core'
/** @hidden */
@Injectable()
export class LocalTerminalHotkeyProvider extends HotkeyProvider {
hotkeys: HotkeyDescription[] = [
{
id: 'new-tab',
name: this.tra... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/services/terminal.service.ts | tabby-local/src/services/terminal.service.ts | import * as fsSync from 'fs'
import { Injectable } from '@angular/core'
import { Logger, LogService, ConfigService, ProfilesService, PartialProfile } from 'tabby-core'
import { TerminalTabComponent } from '../components/terminalTab.component'
import { LocalProfile } from '../api'
@Injectable({ providedIn: 'root' })
ex... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/components/commandLineEditor.component.ts | tabby-local/src/components/commandLineEditor.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import * as shellQuote from 'shell-quote'
import { Component, Input } from '@angular/core'
import { SessionOptions } from '../api'
/** @hidden */
@Component({
selector: 'command-line-editor',
templateUrl: './commandLineEditor.component.pug'... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/components/environmentEditor.component.ts | tabby-local/src/components/environmentEditor.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, Output, Input } from '@angular/core'
import { Subject } from 'rxjs'
/** @hidden */
@Component({
selector: 'environment-editor',
templateUrl: './environmentEditor.component.pug',
styleUrls: ['./environmentEditor.compo... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/components/localProfileSettings.component.ts | tabby-local/src/components/localProfileSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, Inject, Optional } from '@angular/core'
import { LocalProfile, UACService } from '../api'
import { PlatformService, ProfileSettingsComponent } from 'tabby-core'
/** @hidden */
@Component({
templateUrl: './localProfileSettin... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/components/terminalTab.component.ts | tabby-local/src/components/terminalTab.component.ts | import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Component, Input, Injector, Inject, Optional } from '@angular/core'
import { BaseTabProcess, WIN_BUILD_CONPTY_SUPPORTED, isWindowsBuild, GetRecoveryTokenOptions } from 'tabby-core'
import { BaseTerminalTabComponent } from 'tabby-terminal'
im... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-local/src/components/shellSettingsTab.component.ts | tabby-local/src/components/shellSettingsTab.component.ts | import { Component, HostBinding } from '@angular/core'
import { WIN_BUILD_CONPTY_SUPPORTED, WIN_BUILD_CONPTY_STABLE, isWindowsBuild, ConfigService } from 'tabby-core'
/** @hidden */
@Component({
templateUrl: './shellSettingsTab.component.pug',
})
export class ShellSettingsTabComponent {
isConPTYAvailable: bool... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/profiles.ts | tabby-ssh/src/profiles.ts | import { Injectable, InjectFlags, Injector } from '@angular/core'
import { NewTabParameters, PartialProfile, TranslateService, QuickConnectProfileProvider } from 'tabby-core'
import { SSHProfileSettingsComponent } from './components/sshProfileSettings.component'
import { SSHTabComponent } from './components/sshTab.comp... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/config.ts | tabby-ssh/src/config.ts | import { ConfigProvider } from 'tabby-core'
/** @hidden */
export class SSHConfigProvider extends ConfigProvider {
defaults = {
ssh: {
warnOnClose: false,
winSCPPath: null,
agentType: 'auto',
agentPath: null,
x11Display: null,
knownHos... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/recoveryProvider.ts | tabby-ssh/src/recoveryProvider.ts | import { Injectable } from '@angular/core'
import { TabRecoveryProvider, NewTabParameters, RecoveryToken } from 'tabby-core'
import { SSHTabComponent } from './components/sshTab.component'
/** @hidden */
@Injectable()
export class RecoveryProvider extends TabRecoveryProvider<SSHTabComponent> {
async applicableTo ... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/algorithms.ts | tabby-ssh/src/algorithms.ts | import * as russh from 'russh'
import { SSHAlgorithmType } from './api'
export const supportedAlgorithms = {
[SSHAlgorithmType.KEX]: russh.getSupportedKexAlgorithms().filter(x => x !== 'none'),
[SSHAlgorithmType.HOSTKEY]: russh.getSupportedKeyTypes().filter(x => x !== 'none'),
[SSHAlgorithmType.CIPHER]: ru... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/settings.ts | tabby-ssh/src/settings.ts | import { Injectable } from '@angular/core'
import { SettingsTabProvider } from 'tabby-settings'
import { SSHSettingsTabComponent } from './components/sshSettingsTab.component'
/** @hidden */
@Injectable()
export class SSHSettingsTabProvider extends SettingsTabProvider {
id = 'ssh'
icon = 'globe'
title = '... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/index.ts | tabby-ssh/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 { ToastrModule } from 'ngx-toastr'
import { NgxFilesizeModule } from 'ngx-filesize'
import TabbyCoreModule, { ConfigProvider,... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/tabContextMenu.ts | tabby-ssh/src/tabContextMenu.ts | import { Injectable } from '@angular/core'
import { BaseTabComponent, TabContextMenuItemProvider, HostAppService, Platform, MenuItemOptions, TranslateService } from 'tabby-core'
import { SSHTabComponent } from './components/sshTab.component'
import { SSHService } from './services/ssh.service'
/** @hidden */
@Injectab... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/hotkeys.ts | tabby-ssh/src/hotkeys.ts | import { Injectable } from '@angular/core'
import { HotkeyDescription, HotkeyProvider, TranslateService } from 'tabby-core'
/** @hidden */
@Injectable()
export class SSHHotkeyProvider extends HotkeyProvider {
hotkeys: HotkeyDescription[] = [
{
id: 'restart-ssh-session',
name: this.t... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/sftpContextMenu.ts | tabby-ssh/src/sftpContextMenu.ts | import { Injectable } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { MenuItemOptions, PlatformService, TranslateService, HostAppService, Platform } from 'tabby-core'
import { SFTPSession, SFTPFile } from './session/sftp'
import { SFTPContextMenuItemProvider } from './api'
import { S... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/services/sshMultiplexer.service.ts | tabby-ssh/src/services/sshMultiplexer.service.ts | import { Injectable } from '@angular/core'
import { SSHProfile } from '../api'
import { PartialProfile, ProfilesService } from 'tabby-core'
import { SSHSession } from '../session/ssh'
@Injectable({ providedIn: 'root' })
export class SSHMultiplexerService {
private sessions = new Map<string, SSHSession>()
cons... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/services/passwordStorage.service.ts | tabby-ssh/src/services/passwordStorage.service.ts | import * as keytar from 'keytar'
import { Injectable } from '@angular/core'
import { VaultService } from 'tabby-core'
import { SSHProfile } from '../api'
export const VAULT_SECRET_TYPE_PASSWORD = 'ssh:password'
export const VAULT_SECRET_TYPE_PASSPHRASE = 'ssh:key-passphrase'
@Injectable({ providedIn: 'root' })
export... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/services/sshKnownHosts.service.ts | tabby-ssh/src/services/sshKnownHosts.service.ts | import { Injectable } from '@angular/core'
import { ConfigService } from 'tabby-core'
export interface KnownHostSelector {
host: string
port: number
type: string
}
export interface KnownHost extends KnownHostSelector {
digest: string
}
@Injectable({ providedIn: 'root' })
export class SSHKnownHostsSer... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/services/ssh.service.ts | tabby-ssh/src/services/ssh.service.ts | import * as fs from 'fs/promises'
import * as crypto from 'crypto'
import * as tmp from 'tmp-promise'
import { Injectable } from '@angular/core'
import { ConfigService, FileProvidersService, HostAppService, Platform, PlatformService } from 'tabby-core'
import { SSHSession } from '../session/ssh'
import { SSHProfile } f... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sftpPanel.component.ts | tabby-ssh/src/components/sftpPanel.component.ts | import * as C from 'constants'
import { posix as path } from 'path'
import { Component, Input, Output, EventEmitter, Inject, Optional } from '@angular/core'
import { FileUpload, DirectoryUpload, DirectoryDownload, MenuItemOptions, NotificationsService, PlatformService } from 'tabby-core'
import { SFTPSession, SFTPFile ... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.ts | tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.ts | import { Component, Input, Output, EventEmitter, ViewChild, ElementRef, ChangeDetectionStrategy } from '@angular/core'
import { KeyboardInteractivePrompt } from '../session/ssh'
import { SSHProfile } from '../api'
import { PasswordStorageService } from '../services/passwordStorage.service'
@Component({
selector: '... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sshPortForwardingConfig.component.ts | tabby-ssh/src/components/sshPortForwardingConfig.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, Input, Output, EventEmitter } from '@angular/core'
import { ForwardedPortConfig, PortForwardType } from '../api'
/** @hidden */
@Component({
selector: 'ssh-port-forwarding-config',
templateUrl: './sshPortForwardingConfig... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sshSettingsTab.component.ts | tabby-ssh/src/components/sshSettingsTab.component.ts | import { Component, HostBinding } from '@angular/core'
import { X11Socket } from '../session/x11'
import { ConfigService, HostAppService, Platform } from 'tabby-core'
/** @hidden */
@Component({
templateUrl: './sshSettingsTab.component.pug',
})
export class SSHSettingsTabComponent {
Platform = Platform
def... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/hostKeyPromptModal.component.ts | tabby-ssh/src/components/hostKeyPromptModal.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, Input } from '@angular/core'
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
import { KnownHost, KnownHostSelector, SSHKnownHostsService } from '../services/sshKnownHosts.service'
/** @hidden */
@Component({
temp... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts | tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts | import { Component } from '@angular/core'
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
import { BaseComponent } from 'tabby-core'
/** @hidden */
@Component({
templateUrl: './sftpCreateDirectoryModal.component.pug',
})
export class SFTPCreateDirectoryModalComponent extends BaseComponent {
directo... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sshPortForwardingModal.component.ts | tabby-ssh/src/components/sshPortForwardingModal.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, Input } from '@angular/core'
import { ForwardedPort } from '../session/forwards'
import { SSHSession } from '../session/ssh'
import { ForwardedPortConfig } from '../api'
/** @hidden */
@Component({
templateUrl: './sshPortFor... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sftpDeleteModal.component.ts | tabby-ssh/src/components/sftpDeleteModal.component.ts | import { Component } from '@angular/core'
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
import { BaseComponent } from 'tabby-core'
import { SFTPFile, SFTPSession } from '../session/sftp'
/** @hidden */
@Component({
templateUrl: './sftpDeleteModal.component.pug',
})
export class SFTPDeleteModalCompone... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sshTab.component.ts | tabby-ssh/src/components/sshTab.component.ts | import * as russh from 'russh'
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import colors from 'ansi-colors'
import { Component, Injector, HostListener } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { Platform, ProfilesService } from 'tabby-core'
import { Ba... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/components/sshProfileSettings.component.ts | tabby-ssh/src/components/sshProfileSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, ViewChild } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { firstBy } from 'thenby'
import { FileProvidersService, Platform, HostAppService, PromptModalComponent, PartialProfile, ProfilesServi... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/api/interfaces.ts | tabby-ssh/src/api/interfaces.ts | import { ConnectableTerminalProfile, InputProcessingOptions, LoginScriptsOptions } from 'tabby-terminal'
export enum SSHAlgorithmType {
HMAC = 'hmac',
KEX = 'kex',
CIPHER = 'cipher',
HOSTKEY = 'serverHostKey',
COMPRESSION = 'compression',
}
export interface SSHProfile extends ConnectableTerminalP... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/api/contextMenu.ts | tabby-ssh/src/api/contextMenu.ts | import { MenuItemOptions } from 'tabby-core'
import { SFTPFile } from '../session/sftp'
import { SFTPPanelComponent } from '../components/sftpPanel.component'
/**
* Extend to add items to the SFTPPanel context menu
*/
export abstract class SFTPContextMenuItemProvider {
weight = 0
abstract getItems (item: SF... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/api/index.ts | tabby-ssh/src/api/index.ts | export * from './contextMenu'
export * from './interfaces'
export * from './importer'
export { SSHMultiplexerService } from '../services/sshMultiplexer.service'
| typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/api/importer.ts | tabby-ssh/src/api/importer.ts | import { PartialProfile } from 'tabby-core'
import { SSHProfile } from './interfaces'
export abstract class SSHProfileImporter {
abstract getProfiles (): Promise<PartialProfile<SSHProfile>[]>
}
export abstract class AutoPrivateKeyLocator {
abstract getKeys (): Promise<[string, Buffer][]>
}
| typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/session/forwards.ts | tabby-ssh/src/session/forwards.ts | import socksv5 from '@luminati-io/socksv5'
import { Server, Socket, createServer } from 'net'
import { ForwardedPortConfig, PortForwardType } from '../api'
export class ForwardedPort implements ForwardedPortConfig {
type: PortForwardType
host = '127.0.0.1'
port: number
targetAddress: string
target... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/session/shell.ts | tabby-ssh/src/session/shell.ts | import { Observable, Subject } from 'rxjs'
import stripAnsi from 'strip-ansi'
import { Injector } from '@angular/core'
import { LogService } from 'tabby-core'
import { BaseSession, UTF8SplitterMiddleware, InputProcessor } from 'tabby-terminal'
import { SSHSession } from './ssh'
import { SSHProfile } from '../api'
impor... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/session/x11.ts | tabby-ssh/src/session/x11.ts | import { Socket, SocketConnectOpts } from 'net'
import { Subject } from 'rxjs'
export class X11Socket {
error$ = new Subject<Error>()
private socket: Socket | null = null
static resolveDisplaySpec (spec?: string|null): SocketConnectOpts {
// eslint-disable-next-line prefer-const, @typescript-eslin... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/session/ssh.ts | tabby-ssh/src/session/ssh.ts | import * as fs from 'mz/fs'
import * as crypto from 'crypto'
import colors from 'ansi-colors'
import stripAnsi from 'strip-ansi'
import * as shellQuote from 'shell-quote'
import { Injector } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { ConfigService, FileProvidersService, Notifica... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | true |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-ssh/src/session/sftp.ts | tabby-ssh/src/session/sftp.ts | /* eslint-disable @typescript-eslint/no-unused-vars */
import { Subject, Observable } from 'rxjs'
import { posix as posixPath } from 'path'
import { Injector } from '@angular/core'
import { FileDownload, FileUpload, Logger, LogService } from 'tabby-core'
import * as russh from 'russh'
export interface SFTPFile {
n... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-plugin-manager/src/settings.ts | tabby-plugin-manager/src/settings.ts | import { Injectable } from '@angular/core'
import { SettingsTabProvider } from 'tabby-settings'
import { PluginsSettingsTabComponent } from './components/pluginsSettingsTab.component'
/** @hidden */
@Injectable()
export class PluginsSettingsTabProvider extends SettingsTabProvider {
id = 'plugins'
title = 'Plu... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-plugin-manager/src/index.ts | tabby-plugin-manager/src/index.ts | import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { FormsModule } from '@angular/forms'
import { NgbModule } from '@ng-bootstrap/ng-bootstrap'
import TabbyCorePlugin from 'tabby-core'
import { SettingsTabProvider } from 'tabby-settings'
import { PluginsSettingsTabComponent... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-plugin-manager/src/services/pluginManager.service.ts | tabby-plugin-manager/src/services/pluginManager.service.ts | import axios from 'axios'
import { compare as semverCompare } from 'semver'
import { Observable, from, forkJoin, map, of } from 'rxjs'
import { Injectable, Inject } from '@angular/core'
import { Logger, LogService, PlatformService, BOOTSTRAP_DATA, BootstrapData, PluginInfo } from 'tabby-core'
import { PLUGIN_BLACKLIST ... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts | tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { BehaviorSubject, Observable, debounceTime, distinctUntilChanged, first, tap, flatMap, map } from 'rxjs'
import semverGt from 'semver/functions/gt'
import { Component, Ho... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/profiles.ts | tabby-telnet/src/profiles.ts | import { Injectable } from '@angular/core'
import { NewTabParameters, PartialProfile, TranslateService, QuickConnectProfileProvider } from 'tabby-core'
import { TelnetProfileSettingsComponent } from './components/telnetProfileSettings.component'
import { TelnetTabComponent } from './components/telnetTab.component'
impo... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/config.ts | tabby-telnet/src/config.ts | import { ConfigProvider } from 'tabby-core'
/** @hidden */
export class TelnetConfigProvider extends ConfigProvider {
defaults = {
hotkeys: {
'restart-telnet-session': [],
},
}
platformDefaults = { }
}
| typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/session.ts | tabby-telnet/src/session.ts | /* eslint-disable @typescript-eslint/no-unsafe-enum-comparison */
import { Socket } from 'net'
import colors from 'ansi-colors'
import stripAnsi from 'strip-ansi'
import { Injector } from '@angular/core'
import { LogService } from 'tabby-core'
import { BaseSession, ConnectableTerminalProfile, InputProcessingOptions, In... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/recoveryProvider.ts | tabby-telnet/src/recoveryProvider.ts | import { Injectable } from '@angular/core'
import { TabRecoveryProvider, NewTabParameters, RecoveryToken } from 'tabby-core'
import { TelnetTabComponent } from './components/telnetTab.component'
/** @hidden */
@Injectable()
export class RecoveryProvider extends TabRecoveryProvider<TelnetTabComponent> {
async appl... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/index.ts | tabby-telnet/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 { ToastrModule } from 'ngx-toastr'
import { NgxFilesizeModule } from 'ngx-filesize'
import TabbyCoreModule, { ConfigProvider,... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/hotkeys.ts | tabby-telnet/src/hotkeys.ts | import { Injectable } from '@angular/core'
import { HotkeyDescription, HotkeyProvider, TranslateService } from 'tabby-core'
/** @hidden */
@Injectable()
export class TelnetHotkeyProvider extends HotkeyProvider {
hotkeys: HotkeyDescription[] = [
{
id: 'restart-telnet-session',
name: ... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/components/telnetProfileSettings.component.ts | tabby-telnet/src/components/telnetProfileSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component } from '@angular/core'
import { ProfileSettingsComponent } from 'tabby-core'
import { TelnetProfile } from '../session'
/** @hidden */
@Component({
templateUrl: './telnetProfileSettings.component.pug',
})
export class Telnet... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-telnet/src/components/telnetTab.component.ts | tabby-telnet/src/components/telnetTab.component.ts | import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import colors from 'ansi-colors'
import { Component, Injector } from '@angular/core'
import { Platform } from 'tabby-core'
import { BaseTerminalTabComponent, ConnectableTerminalTabComponent } from 'tabby-terminal'
import { TelnetProfile, TelnetSessio... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/profiles.ts | tabby-serial/src/profiles.ts | import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import slugify from 'slugify'
import deepClone from 'clone-deep'
import { Injectable } from '@angular/core'
import { NewTabParameters, SelectorService, HostAppService, Platform, TranslateService, ConnectableProfileProvider } from 'tabby-core'
import ... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/config.ts | tabby-serial/src/config.ts | import { ConfigProvider } from 'tabby-core'
/** @hidden */
export class SerialConfigProvider extends ConfigProvider {
defaults = {
hotkeys: {
serial: [
'Alt-K',
],
'restart-serial-session': [],
},
}
platformDefaults = { }
}
| typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/api.ts | tabby-serial/src/api.ts | import stripAnsi from 'strip-ansi'
import { SerialPortStream } from '@serialport/stream'
import { LogService, NotificationsService } from 'tabby-core'
import { Subject, Observable } from 'rxjs'
import { Injector, NgZone } from '@angular/core'
import { BaseSession, ConnectableTerminalProfile, InputProcessingOptions, Inp... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/recoveryProvider.ts | tabby-serial/src/recoveryProvider.ts | import { Injectable } from '@angular/core'
import { TabRecoveryProvider, NewTabParameters, RecoveryToken } from 'tabby-core'
import { SerialTabComponent } from './components/serialTab.component'
/** @hidden */
@Injectable()
export class RecoveryProvider extends TabRecoveryProvider<SerialTabComponent> {
async appl... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/index.ts | tabby-serial/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 { ToastrModule } from 'ngx-toastr'
import TabbyCoreModule, { ConfigProvider, TabRecoveryProvider, HotkeyProvider, ProfileProv... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/hotkeys.ts | tabby-serial/src/hotkeys.ts | import { Injectable } from '@angular/core'
import { HotkeyDescription, HotkeyProvider, TranslateService } from 'tabby-core'
/** @hidden */
@Injectable()
export class SerialHotkeyProvider extends HotkeyProvider {
hotkeys: HotkeyDescription[] = [
{
id: 'serial',
name: this.translate.i... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/services/serial.service.ts | tabby-serial/src/services/serial.service.ts | import { Injectable, Injector } from '@angular/core'
import WSABinding from 'serialport-binding-webserialapi'
import AbstractBinding from '@serialport/binding-abstract'
import { autoDetect } from '@serialport/bindings-cpp'
import { HostAppService, PartialProfile, Platform, ProfilesService } from 'tabby-core'
import { S... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/components/serialTab.component.ts | tabby-serial/src/components/serialTab.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import colors from 'ansi-colors'
import { Component, Injector } from '@angular/core'
import { Platform, SelectorService } from 'tabby-core'
import { BaseTerminalTabComponent, Conn... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-serial/src/components/serialProfileSettings.component.ts | tabby-serial/src/components/serialProfileSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component } from '@angular/core'
import { debounceTime, distinctUntilChanged, map } from 'rxjs'
import { HostAppService, Platform, ProfileSettingsComponent } from 'tabby-core'
import { SerialPortInfo, BAUD_RATES, SerialProfile } from '../ap... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-linkifier/src/config.ts | tabby-linkifier/src/config.ts | import { ConfigProvider } from 'tabby-core'
/** @hidden */
export class ClickableLinksConfigProvider extends ConfigProvider {
defaults = {
clickableLinks: {
modifier: null,
},
}
platformDefaults = { }
}
| typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-linkifier/src/api.ts | tabby-linkifier/src/api.ts | import { BaseTerminalTabComponent } from 'tabby-terminal'
export abstract class LinkHandler {
regex: RegExp
priority = 1
convert (uri: string, _tab?: BaseTerminalTabComponent<any>): Promise<string>|string {
return uri
}
verify (_uri: string, _tab?: BaseTerminalTabComponent<any>): Promise<... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-linkifier/src/decorator.ts | tabby-linkifier/src/decorator.ts | import { Inject, Injectable } from '@angular/core'
import { ConfigService, PlatformService } from 'tabby-core'
import { TerminalDecorator, BaseTerminalTabComponent, XTermFrontend } from 'tabby-terminal'
import { WebLinksAddon } from '@xterm/addon-web-links'
import { LinkHandler } from './api'
@Injectable()
export clas... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-linkifier/src/index.ts | tabby-linkifier/src/index.ts | /* eslint-disable @typescript-eslint/no-extraneous-class */
import { NgModule } from '@angular/core'
import { ToastrModule } from 'ngx-toastr'
import { ConfigProvider } from 'tabby-core'
import { TerminalDecorator } from 'tabby-terminal'
import { LinkHandler } from './api'
import { UnixFileHandler, WindowsFileHandler,... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-linkifier/src/handlers.ts | tabby-linkifier/src/handlers.ts | import * as fs from 'fs/promises'
import * as path from 'path'
import untildify from 'untildify'
import { Injectable } from '@angular/core'
import { ToastrService } from 'ngx-toastr'
import { PlatformService } from 'tabby-core'
import { BaseTerminalTabComponent } from 'tabby-terminal'
import { LinkHandler } from './ap... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/config.ts | tabby-terminal/src/config.ts | import { ConfigProvider, Platform } from 'tabby-core'
import { DefaultColorSchemes } from './colorSchemes'
/** @hidden */
export class TerminalConfigProvider extends ConfigProvider {
defaults = {
hotkeys: {
'copy-current-path': [],
},
terminal: {
frontend: 'xterm-web... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/session.ts | tabby-terminal/src/session.ts | import { Observable, Subject } from 'rxjs'
import { Logger } from 'tabby-core'
import { LoginScriptProcessor, LoginScriptsOptions } from './middleware/loginScriptProcessing'
import { OSCProcessor } from './middleware/oscProcessing'
import { SessionMiddlewareStack } from './api/middleware'
/**
* A session object for a... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/colorSchemes.ts | tabby-terminal/src/colorSchemes.ts | import { Injectable } from '@angular/core'
import { TerminalColorScheme } from './api/interfaces'
import { TerminalColorSchemeProvider } from './api/colorSchemeProvider'
@Injectable({ providedIn: 'root' })
export class DefaultColorSchemes extends TerminalColorSchemeProvider {
static defaultColorScheme: TerminalCol... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/cli.ts | tabby-terminal/src/cli.ts | import shellQuote from 'shell-quote'
import { Injectable } from '@angular/core'
import { CLIHandler, CLIEvent, AppService, HostWindowService } from 'tabby-core'
import { BaseTerminalTabComponent } from './api/baseTerminalTab.component'
@Injectable()
export class TerminalCLIHandler extends CLIHandler {
firstMatchOn... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/settings.ts | tabby-terminal/src/settings.ts | import { Injectable } from '@angular/core'
import { SettingsTabProvider } from 'tabby-settings'
import { AppearanceSettingsTabComponent } from './components/appearanceSettingsTab.component'
import { TerminalSettingsTabComponent } from './components/terminalSettingsTab.component'
import { ColorSchemeSettingsTabComponen... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/helpers.ts | tabby-terminal/src/helpers.ts | import { TerminalColorScheme } from './api/interfaces'
import { ConfigService, ThemesService } from 'tabby-core'
export function getTerminalBackgroundColor (
config: ConfigService,
themes: ThemesService,
scheme?: TerminalColorScheme,
): string|null {
const appTheme = themes.findCurrentTheme()
const... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/index.ts | tabby-terminal/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 { ToastrModule } from 'ngx-toastr'
import { NgxColorsModule } from 'ngx-colors'
import TabbyCorePlugin, { ConfigProvider, Ho... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/tabContextMenu.ts | tabby-terminal/src/tabContextMenu.ts | import { Injectable, Optional, Inject } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { BaseTabComponent, TabContextMenuItemProvider, NotificationsService, MenuItemOptions, TranslateService, SplitTabComponent, PromptModalComponent, ConfigService, PartialProfile, Profile } from 'tabby... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/hotkeys.ts | tabby-terminal/src/hotkeys.ts | import { Injectable } from '@angular/core'
import { HotkeyDescription, HotkeyProvider, TranslateService } from 'tabby-core'
/** @hidden */
@Injectable()
export class TerminalHotkeyProvider extends HotkeyProvider {
hotkeys: HotkeyDescription[] = [
{
id: 'copy',
name: this.translate.i... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/services/multifocus.service.ts | tabby-terminal/src/services/multifocus.service.ts | import { Injectable } from '@angular/core'
import { BaseTerminalTabComponent } from '../api/baseTerminalTab.component'
import { Subscription } from 'rxjs'
import { SplitTabComponent, TranslateService, AppService, HotkeysService } from 'tabby-core'
@Injectable({ providedIn: 'root' })
export class MultifocusService {
... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/middleware/oscProcessing.ts | tabby-terminal/src/middleware/oscProcessing.ts | import * as os from 'os'
import { Subject, Observable } from 'rxjs'
import { SessionMiddleware } from '../api/middleware'
const OSCPrefix = Buffer.from('\x1b]')
const OSCSuffixes = [Buffer.from('\x07'), Buffer.from('\x1b\\')]
export class OSCProcessor extends SessionMiddleware {
get cwdReported$ (): Observable<st... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/middleware/utf8Splitter.ts | tabby-terminal/src/middleware/utf8Splitter.ts | import { UTF8Splitter } from 'tabby-core'
import { SessionMiddleware } from '../api/middleware'
/**
* Ensures that the session output is chunked at UTF8 character boundaries.
*/
export class UTF8SplitterMiddleware extends SessionMiddleware {
private decoder = new UTF8Splitter()
feedFromSession (data: Buffe... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/middleware/streamProcessing.ts | tabby-terminal/src/middleware/streamProcessing.ts | import hexdump from 'hexer'
import bufferReplace from 'buffer-replace'
import colors from 'ansi-colors'
import binstring from 'binstring'
import { interval, debounce } from 'rxjs'
import { PassThrough, Readable, Writable } from 'stream'
import { ReadLine, createInterface as createReadline, clearLine } from 'readline'
i... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/middleware/loginScriptProcessing.ts | tabby-terminal/src/middleware/loginScriptProcessing.ts | import deepClone from 'clone-deep'
import { Logger } from 'tabby-core'
import { SessionMiddleware } from '../api/middleware'
export interface LoginScript {
expect: string
send: string
isRegex?: boolean
optional?: boolean
}
export interface LoginScriptsOptions {
scripts?: LoginScript[]
}
export cl... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/middleware/inputProcessing.ts | tabby-terminal/src/middleware/inputProcessing.ts | import { SessionMiddleware } from '../api/middleware'
export interface InputProcessingOptions {
backspace: 'ctrl-h'|'ctrl-?'|'delete'|'backspace'
}
export class InputProcessor extends SessionMiddleware {
constructor (
private options: InputProcessingOptions,
) {
super()
}
feedFrom... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/searchPanel.component.ts | tabby-terminal/src/components/searchPanel.component.ts | import { Component, Input, Output, EventEmitter } from '@angular/core'
import { Subject, debounceTime } from 'rxjs'
import { Frontend, SearchOptions, SearchState } from '../frontends/frontend'
import { ConfigService, NotificationsService, TranslateService } from 'tabby-core'
@Component({
selector: 'search-panel',
... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/loginScriptsSettings.component.ts | tabby-terminal/src/components/loginScriptsSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, Input } from '@angular/core'
import { PlatformService, TranslateService } from 'tabby-core'
import { LoginScript, LoginScriptsOptions } from '../middleware/loginScriptProcessing'
/** @hidden */
@Component({
selector: 'login... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts | tabby-terminal/src/components/colorSchemeSettingsForMode.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import deepEqual from 'deep-equal'
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Component, Inject, Input, ChangeDetectionStrategy, ChangeDetectorRef, HostBinding } from '@angular/core'
import { ConfigService, Platf... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/inputProcessingSettings.component.ts | tabby-terminal/src/components/inputProcessingSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Component, Input } from '@angular/core'
import { InputProcessingOptions } from '../middleware/inputProcessing'
/** @hidden */
@Component({
selector: 'input-processin... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/streamProcessingSettings.component.ts | tabby-terminal/src/components/streamProcessingSettings.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Component, Input } from '@angular/core'
import { StreamProcessingOptions } from '../middleware/streamProcessing'
/** @hidden */
@Component({
selector: 'stream-proces... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/colorSchemePreview.component.ts | tabby-terminal/src/components/colorSchemePreview.component.ts | import { Component, Input, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'
import { BaseComponent, ConfigService, getCSSFontFamily } from 'tabby-core'
import { TerminalColorScheme } from '../api/interfaces'
/** @hidden */
@Component({
selector: 'color-scheme-preview',
templateUrl: './colorSch... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/appearanceSettingsTab.component.ts | tabby-terminal/src/components/appearanceSettingsTab.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Observable, debounceTime, distinctUntilChanged, map } from 'rxjs'
import { debounce } from 'utils-decorators/dist/esm/debounce/debounce'
import { Component } from '@angular/core'
import { ConfigService, getCSSFontFamily, PlatformService, T... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/colorPicker.component.ts | tabby-terminal/src/components/colorPicker.component.ts | import { Component, Input, Output, EventEmitter } from '@angular/core'
/** @hidden */
@Component({
selector: 'color-picker',
templateUrl: './colorPicker.component.pug',
styleUrls: ['./colorPicker.component.scss'],
})
export class ColorPickerComponent {
@Input() model: string
@Input() title: string
... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/terminalToolbar.component.ts | tabby-terminal/src/components/terminalToolbar.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Component, HostListener, Input } from '@angular/core'
import { AppService, SplitTabComponent } from 'tabby-core'
import { BaseTerminalTabComponent } from '../api/baseTerminalTab.component'
/** @hidden */
@Component({
selector: 'termina... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts | tabby-terminal/src/components/colorSchemeSettingsTab.component.ts | import { Component } from '@angular/core'
import { ConfigService, PlatformService } from 'tabby-core'
/** @hidden */
@Component({
templateUrl: './colorSchemeSettingsTab.component.pug',
})
export class ColorSchemeSettingsTabComponent {
defaultTab = 'dark'
constructor (
platform: PlatformService,
... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/colorSchemeSelector.component.ts | tabby-terminal/src/components/colorSchemeSelector.component.ts | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Component, Inject, Input, ChangeDetectionStrategy, ChangeDetectorRef, HostBinding, Output, EventEmitter } from '@angular/core'
import { ConfigService } from 'tabby-core'... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/components/terminalSettingsTab.component.ts | tabby-terminal/src/components/terminalSettingsTab.component.ts | import { Component, HostBinding } from '@angular/core'
import { ConfigService, HostAppService, Platform, PlatformService, altKeyName, metaKeyName } from 'tabby-core'
/** @hidden */
@Component({
templateUrl: './terminalSettingsTab.component.pug',
})
export class TerminalSettingsTabComponent {
Platform = Platfor... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/api/contextMenuProvider.ts | tabby-terminal/src/api/contextMenuProvider.ts | import type { MenuItemOptions } from 'tabby-core'
import { BaseTerminalTabComponent } from './baseTerminalTab.component'
/**
* Extend to add more terminal context menu items
* @deprecated
*/
export abstract class TerminalContextMenuItemProvider {
weight: number
abstract getItems (tab: BaseTerminalTabCompon... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/api/middleware.ts | tabby-terminal/src/api/middleware.ts | import { Subject, Observable } from 'rxjs'
import { SubscriptionContainer } from 'tabby-core'
export class SessionMiddleware {
get outputToSession$ (): Observable<Buffer> { return this.outputToSession }
get outputToTerminal$ (): Observable<Buffer> { return this.outputToTerminal }
protected outputToSession... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/api/baseTerminalTab.component.ts | tabby-terminal/src/api/baseTerminalTab.component.ts | import { Observable, Subject, first, auditTime, debounce, interval } from 'rxjs'
import { Spinner } from 'cli-spinner'
import colors from 'ansi-colors'
import { NgZone, OnInit, OnDestroy, Injector, ViewChild, HostBinding, Input, ElementRef, InjectFlags, Component } from '@angular/core'
import { trigger, transition, sty... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/api/interfaces.ts | tabby-terminal/src/api/interfaces.ts | import { ConnectableProfile, Profile } from 'tabby-core'
export interface ResizeEvent {
columns: number
rows: number
}
export interface TerminalColorScheme {
name: string
foreground: string
background: string
cursor: string
colors: string[]
selection?: string
selectionForeground?: ... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Eugeny/tabby | https://github.com/Eugeny/tabby/blob/5c6008deacd3b1fcd12d0a78f5e645db43beec89/tabby-terminal/src/api/connectableTerminalTab.component.ts | tabby-terminal/src/api/connectableTerminalTab.component.ts | import { marker as _ } from '@biesbjerg/ngx-translate-extract-marker'
import { Injector, Component } from '@angular/core'
import { first } from 'rxjs'
import { ConnectableTerminalProfile } from './interfaces'
import { BaseTerminalTabComponent } from './baseTerminalTab.component'
import { GetRecoveryTokenOptions, Rec... | typescript | MIT | 5c6008deacd3b1fcd12d0a78f5e645db43beec89 | 2026-01-04T15:27:36.904744Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.