Repository: Eugeny/tabby Branch: master Commit: 19eb46a72b83 Files: 772 Total size: 4.5 MB Directory structure: gitextract_38kc1ygb/ ├── .all-contributorsrc ├── .editorconfig ├── .eslintrc.yml ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── feature_request.md │ │ └── issue-report.md │ ├── dependabot.yml │ ├── stale.yml │ └── workflows/ │ ├── build.yml │ ├── codeql-analysis.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── .mergify.yml ├── .pug-lintrc.js ├── .vscode/ │ └── launch.json ├── .well-known/ │ └── funding-manifest-urls ├── CODE_OF_CONDUCT.md ├── HACKING.md ├── LICENSE ├── README.de-DE.md ├── README.es-ES.md ├── README.id-ID.md ├── README.it-IT.md ├── README.ja-JP.md ├── README.ko-KR.md ├── README.md ├── README.pl-PL.md ├── README.pt-BR.md ├── README.ru-RU.md ├── README.zh-CN.md ├── app/ │ ├── dev-app-update.yml │ ├── index.pug │ ├── lib/ │ │ ├── app.ts │ │ ├── cli.ts │ │ ├── config.ts │ │ ├── index.ts │ │ ├── lru.ts │ │ ├── pluginManager.ts │ │ ├── portable.ts │ │ ├── pty.ts │ │ ├── sentry.ts │ │ ├── urlHandler.ts │ │ ├── utfSplitter.ts │ │ └── window.ts │ ├── package.json │ ├── patches/ │ │ └── @serialport+bindings-cpp+11.0.3.patch │ ├── src/ │ │ ├── app.module.ts │ │ ├── entry.preload.ts │ │ ├── entry.ts │ │ ├── global.scss │ │ ├── pluginBlacklist.ts │ │ ├── plugins.ts │ │ ├── preload.scss │ │ └── toastr.scss │ ├── tsconfig.json │ ├── tsconfig.main.json │ ├── webpack.config.main.mjs │ └── webpack.config.mjs ├── build/ │ ├── installer.nsh │ ├── linux/ │ │ └── after-install.tpl │ └── mac/ │ ├── entitlements.plist │ └── icon.icns ├── electron-builder.yml ├── extras/ │ ├── automator-workflows/ │ │ ├── Open Tabby here.workflow/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature/ │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeRequirements-1 │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ │ └── document.wflow │ │ └── Paste path into Tabby.workflow/ │ │ └── Contents/ │ │ ├── Info.plist │ │ ├── _CodeSignature/ │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ └── document.wflow │ └── clink/ │ ├── CHANGES │ ├── LICENSE │ ├── clink.bat │ ├── clink.lua │ ├── clink_inputrc_base │ ├── default_inputrc │ └── default_settings ├── firebase.json ├── locale/ │ ├── STOP.txt │ ├── af-ZA.po │ ├── app.pot │ ├── bg-BG.po │ ├── cs-CZ.po │ ├── da-DK.po │ ├── de-DE.po │ ├── en-GB.po │ ├── en-US.po │ ├── es-ES.po │ ├── fr-FR.po │ ├── hr-HR.po │ ├── id-ID.po │ ├── it-IT.po │ ├── ja-JP.po │ ├── ko-KR.po │ ├── pl-PL.po │ ├── pt-BR.po │ ├── pt-PT.po │ ├── ru-RU.po │ ├── sr-SP.po │ ├── sv-SE.po │ ├── tr-TR.po │ ├── uk-UA.po │ ├── zh-CN.po │ └── zh-TW.po ├── package.json ├── patches/ │ └── app-builder-lib+26.0.12.patch ├── scripts/ │ ├── build-docs.mjs │ ├── build-linux.mjs │ ├── build-macos.mjs │ ├── build-modules.mjs │ ├── build-native.mjs │ ├── build-typings.mjs │ ├── build-windows.mjs │ ├── generate-icon-metadata.mjs │ ├── i18n-extract.mjs │ ├── install-deps.mjs │ ├── prepackage-plugins.mjs │ ├── publish-plugins.mjs │ ├── sentry-upload.mjs │ └── vars.mjs ├── snap/ │ └── snapcraft.yaml ├── tabby-auto-sudo-password/ │ ├── package.json │ ├── src/ │ │ ├── decorator.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-community-color-schemes/ │ ├── .editorconfig │ ├── package.json │ ├── schemes/ │ │ ├── 3024 Day │ │ ├── 3024 Night │ │ ├── AdventureTime │ │ ├── Afterglow │ │ ├── AlienBlood │ │ ├── Argonaut │ │ ├── Arthur │ │ ├── AtelierSulphurpool │ │ ├── Atom │ │ ├── AtomOneLight │ │ ├── Base16 Default Dark │ │ ├── Batman │ │ ├── Belafonte Day │ │ ├── Belafonte Night │ │ ├── BirdsOfParadise │ │ ├── Blazer │ │ ├── Borland │ │ ├── Bright Lights │ │ ├── Broadcast │ │ ├── Brogrammer │ │ ├── C64 │ │ ├── CLRS │ │ ├── Chalk │ │ ├── Chalkboard │ │ ├── Ciapre │ │ ├── Cobalt Neon │ │ ├── Cobalt2 │ │ ├── CrayonPonyFish │ │ ├── Dark Pastel │ │ ├── Darkside │ │ ├── Desert │ │ ├── DimmedMonokai │ │ ├── DotGov │ │ ├── Dracula │ │ ├── Duotone Dark │ │ ├── ENCOM │ │ ├── Earthsong │ │ ├── Elemental │ │ ├── Elementary │ │ ├── Espresso │ │ ├── Espresso Libre │ │ ├── Fideloper │ │ ├── FirefoxDev │ │ ├── Firewatch │ │ ├── FishTank │ │ ├── Flat │ │ ├── Flatland │ │ ├── Floraverse │ │ ├── ForestBlue │ │ ├── FrontEndDelight │ │ ├── FunForrest │ │ ├── Galaxy │ │ ├── Github │ │ ├── Glacier │ │ ├── Grape │ │ ├── Grass │ │ ├── Gruvbox Dark │ │ ├── Hardcore │ │ ├── Harper │ │ ├── Highway │ │ ├── Hipster Green │ │ ├── Homebrew │ │ ├── Hurtado │ │ ├── Hybrid │ │ ├── IC_Green_PPL │ │ ├── IC_Orange_PPL │ │ ├── IR_Black │ │ ├── Iceberg │ │ ├── Jackie Brown │ │ ├── Japanesque │ │ ├── Jazz │ │ ├── Jellybeans │ │ ├── JetBrains Darcula │ │ ├── Kibble │ │ ├── Later This Evening │ │ ├── Lavandula │ │ ├── Light Owl │ │ ├── LiquidCarbon │ │ ├── LiquidCarbonTransparent │ │ ├── LiquidCarbonTransparentInverse │ │ ├── Man Page │ │ ├── Material │ │ ├── MaterialDark │ │ ├── Mathias │ │ ├── Medallion │ │ ├── Melange Dark │ │ ├── Misterioso │ │ ├── Molokai │ │ ├── MonaLisa │ │ ├── Monokai Soda │ │ ├── Monokai Vivid │ │ ├── N0tch2k │ │ ├── Neopolitan │ │ ├── Neutron │ │ ├── Night Owl │ │ ├── NightLion v1 │ │ ├── NightLion v2 │ │ ├── Nord │ │ ├── Novel │ │ ├── Obsidian │ │ ├── Ocean │ │ ├── OceanicMaterial │ │ ├── Ollie │ │ ├── OneHalfDark │ │ ├── OneHalfLight │ │ ├── Pandora │ │ ├── Paraiso Dark │ │ ├── Parasio Dark │ │ ├── PaulMillr │ │ ├── PencilDark │ │ ├── PencilLight │ │ ├── Piatto Light │ │ ├── Pnevma │ │ ├── Pro │ │ ├── Red Alert │ │ ├── Red Sands │ │ ├── Relaxed │ │ ├── Rippedcasts │ │ ├── Rose Pine │ │ ├── Rose Pine Dawn │ │ ├── Rose Pine Moon │ │ ├── Royal │ │ ├── Ryuuko │ │ ├── SeaShells │ │ ├── Seafoam Pastel │ │ ├── Seti │ │ ├── Shaman │ │ ├── Slate │ │ ├── Smyck │ │ ├── SoftServer │ │ ├── Solarized Darcula │ │ ├── Solarized Dark │ │ ├── Solarized Dark - Patched │ │ ├── Solarized Dark Higher Contrast │ │ ├── Solarized Light │ │ ├── SpaceGray │ │ ├── SpaceGray Eighties │ │ ├── SpaceGray Eighties Dull │ │ ├── Spacedust │ │ ├── Spiderman │ │ ├── Spring │ │ ├── Square │ │ ├── Sundried │ │ ├── Symfonic │ │ ├── Tango │ │ ├── Teerb │ │ ├── Terminal Basic │ │ ├── Thayer Bright │ │ ├── The Hulk │ │ ├── TokyoNight │ │ ├── TokyoNight Day │ │ ├── TokyoNight Storm │ │ ├── Tomorrow │ │ ├── Tomorrow Night │ │ ├── Tomorrow Night Blue │ │ ├── Tomorrow Night Bright │ │ ├── Tomorrow Night Eighties │ │ ├── ToyChest │ │ ├── Treehouse │ │ ├── Twilight │ │ ├── Ubuntu │ │ ├── UnderTheSea │ │ ├── Urple │ │ ├── Vaughn │ │ ├── VibrantInk │ │ ├── Violet Dark │ │ ├── Violet Light │ │ ├── WarmNeon │ │ ├── Wez │ │ ├── WildCherry │ │ ├── Wombat │ │ ├── Wryan │ │ ├── Zenburn │ │ ├── ayu │ │ ├── ayu_light │ │ ├── base2tone-cave-dark │ │ ├── base2tone-desert-dark │ │ ├── base2tone-drawbridge-dark │ │ ├── base2tone-evening-dark │ │ ├── base2tone-forest-dark │ │ ├── base2tone-heath-dark │ │ ├── base2tone-heath-light │ │ ├── base2tone-lake-dark │ │ ├── base2tone-meadow-dark │ │ ├── base2tone-morning-light │ │ ├── base2tone-pool-dark │ │ ├── base2tone-sea-dark │ │ ├── base2tone-space-dark │ │ ├── deep │ │ └── idleToes │ ├── src/ │ │ ├── colorSchemes.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-core/ │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── api/ │ │ │ ├── cli.ts │ │ │ ├── commands.ts │ │ │ ├── configProvider.ts │ │ │ ├── fileProvider.ts │ │ │ ├── hostApp.ts │ │ │ ├── hostWindow.ts │ │ │ ├── hotkeyProvider.ts │ │ │ ├── index.ts │ │ │ ├── mainProcess.ts │ │ │ ├── menu.ts │ │ │ ├── platform.ts │ │ │ ├── profileProvider.ts │ │ │ ├── selector.ts │ │ │ ├── tabContextMenuProvider.ts │ │ │ ├── tabRecovery.ts │ │ │ ├── theme.ts │ │ │ └── toolbarButtonProvider.ts │ │ ├── cli.ts │ │ ├── commands.ts │ │ ├── components/ │ │ │ ├── appRoot.component.pug │ │ │ ├── appRoot.component.scss │ │ │ ├── appRoot.component.ts │ │ │ ├── base.component.ts │ │ │ ├── baseTab.component.ts │ │ │ ├── checkbox.component.ts │ │ │ ├── profileIcon.component.pug │ │ │ ├── profileIcon.component.scss │ │ │ ├── profileIcon.component.ts │ │ │ ├── promptModal.component.pug │ │ │ ├── promptModal.component.ts │ │ │ ├── renameTabModal.component.pug │ │ │ ├── renameTabModal.component.ts │ │ │ ├── safeModeModal.component.pug │ │ │ ├── safeModeModal.component.ts │ │ │ ├── selectorModal.component.pug │ │ │ ├── selectorModal.component.scss │ │ │ ├── selectorModal.component.ts │ │ │ ├── selfPositioning.component.ts │ │ │ ├── splitTab.component.scss │ │ │ ├── splitTab.component.ts │ │ │ ├── splitTabDropZone.component.scss │ │ │ ├── splitTabDropZone.component.ts │ │ │ ├── splitTabPaneLabel.component.scss │ │ │ ├── splitTabPaneLabel.component.ts │ │ │ ├── splitTabSpanner.component.scss │ │ │ ├── splitTabSpanner.component.ts │ │ │ ├── startPage.component.pug │ │ │ ├── startPage.component.scss │ │ │ ├── startPage.component.ts │ │ │ ├── tabBody.component.scss │ │ │ ├── tabBody.component.ts │ │ │ ├── tabBody.deep.component.css │ │ │ ├── tabHeader.component.pug │ │ │ ├── tabHeader.component.scss │ │ │ ├── tabHeader.component.ts │ │ │ ├── titleBar.component.pug │ │ │ ├── titleBar.component.scss │ │ │ ├── titleBar.component.ts │ │ │ ├── toggle.component.scss │ │ │ ├── toggle.component.ts │ │ │ ├── transfersMenu.component.pug │ │ │ ├── transfersMenu.component.scss │ │ │ ├── transfersMenu.component.ts │ │ │ ├── unlockVaultModal.component.pug │ │ │ ├── unlockVaultModal.component.ts │ │ │ ├── welcomeTab.component.pug │ │ │ ├── welcomeTab.component.scss │ │ │ ├── welcomeTab.component.ts │ │ │ ├── windowControls.component.pug │ │ │ ├── windowControls.component.scss │ │ │ └── windowControls.component.ts │ │ ├── config.ts │ │ ├── configDefaults.linux.yaml │ │ ├── configDefaults.macos.yaml │ │ ├── configDefaults.web.yaml │ │ ├── configDefaults.windows.yaml │ │ ├── configDefaults.yaml │ │ ├── directives/ │ │ │ ├── alwaysVisibleTypeahead.directive.ts │ │ │ ├── autofocus.directive.ts │ │ │ ├── cdkAutoDropGroup.directive.ts │ │ │ ├── dropZone.directive.pug │ │ │ ├── dropZone.directive.scss │ │ │ ├── dropZone.directive.ts │ │ │ └── fastHtmlBind.directive.ts │ │ ├── hotkeys.ts │ │ ├── icons.json │ │ ├── index.ts │ │ ├── profiles.ts │ │ ├── services/ │ │ │ ├── app.service.ts │ │ │ ├── commands.service.ts │ │ │ ├── config.service.ts │ │ │ ├── docking.service.ts │ │ │ ├── fileProviders.service.ts │ │ │ ├── homeBase.service.ts │ │ │ ├── hotkeys.service.ts │ │ │ ├── hotkeys.util.ts │ │ │ ├── locale.service.ts │ │ │ ├── log.service.ts │ │ │ ├── notifications.service.ts │ │ │ ├── profiles.service.ts │ │ │ ├── selector.service.ts │ │ │ ├── tabRecovery.service.ts │ │ │ ├── tabs.service.ts │ │ │ ├── themes.service.ts │ │ │ ├── updater.service.ts │ │ │ └── vault.service.ts │ │ ├── tabContextMenu.ts │ │ ├── theme.new.scss │ │ ├── theme.ts │ │ ├── theme.vars.scss │ │ ├── theme.vendor.scss │ │ ├── utfSplitter.ts │ │ └── utils.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-electron/ │ ├── package.json │ ├── src/ │ │ ├── colorSchemes.ts │ │ ├── config.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── pathDrop.ts │ │ ├── pty.ts │ │ ├── services/ │ │ │ ├── dockMenu.service.ts │ │ │ ├── docking.service.ts │ │ │ ├── electron.service.ts │ │ │ ├── fileProvider.service.ts │ │ │ ├── hostApp.service.ts │ │ │ ├── hostWindow.service.ts │ │ │ ├── log.service.ts │ │ │ ├── platform.service.ts │ │ │ ├── shellIntegration.service.ts │ │ │ ├── touchbar.service.ts │ │ │ ├── uac.service.ts │ │ │ └── updater.service.ts │ │ ├── sftpContextMenu.ts │ │ ├── shells/ │ │ │ ├── cmder.ts │ │ │ ├── cygwin32.ts │ │ │ ├── cygwin64.ts │ │ │ ├── gitBash.ts │ │ │ ├── linuxDefault.ts │ │ │ ├── macDefault.ts │ │ │ ├── msys2.ts │ │ │ ├── posix.ts │ │ │ ├── powershellCore.ts │ │ │ ├── vs.ts │ │ │ ├── winDefault.ts │ │ │ ├── windowsBase.ts │ │ │ ├── windowsStock.ts │ │ │ └── wsl.ts │ │ └── sshImporters.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-linkifier/ │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── api.ts │ │ ├── config.ts │ │ ├── decorator.ts │ │ ├── handlers.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-local/ │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── api.ts │ │ ├── buttonProvider.ts │ │ ├── cli.ts │ │ ├── components/ │ │ │ ├── commandLineEditor.component.pug │ │ │ ├── commandLineEditor.component.ts │ │ │ ├── environmentEditor.component.pug │ │ │ ├── environmentEditor.component.scss │ │ │ ├── environmentEditor.component.ts │ │ │ ├── localProfileSettings.component.pug │ │ │ ├── localProfileSettings.component.ts │ │ │ ├── shellSettingsTab.component.pug │ │ │ ├── shellSettingsTab.component.ts │ │ │ └── terminalTab.component.ts │ │ ├── config.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── profiles.ts │ │ ├── recoveryProvider.ts │ │ ├── services/ │ │ │ └── terminal.service.ts │ │ ├── session.ts │ │ ├── settings.ts │ │ └── tabContextMenu.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-plugin-manager/ │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── pluginsSettingsTab.component.pug │ │ │ ├── pluginsSettingsTab.component.scss │ │ │ └── pluginsSettingsTab.component.ts │ │ ├── index.ts │ │ ├── services/ │ │ │ └── pluginManager.service.ts │ │ └── settings.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-serial/ │ ├── package.json │ ├── src/ │ │ ├── api.ts │ │ ├── components/ │ │ │ ├── serialProfileSettings.component.pug │ │ │ ├── serialProfileSettings.component.ts │ │ │ ├── serialTab.component.pug │ │ │ ├── serialTab.component.scss │ │ │ └── serialTab.component.ts │ │ ├── config.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── profiles.ts │ │ ├── recoveryProvider.ts │ │ └── services/ │ │ └── serial.service.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-settings/ │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── api.ts │ │ ├── buttonProvider.ts │ │ ├── components/ │ │ │ ├── configSyncSettingsTab.component.pug │ │ │ ├── configSyncSettingsTab.component.ts │ │ │ ├── editProfileGroupModal.component.pug │ │ │ ├── editProfileGroupModal.component.ts │ │ │ ├── editProfileModal.component.pug │ │ │ ├── editProfileModal.component.ts │ │ │ ├── hotkeyInputModal.component.pug │ │ │ ├── hotkeyInputModal.component.scss │ │ │ ├── hotkeyInputModal.component.ts │ │ │ ├── hotkeySettingsTab.component.pug │ │ │ ├── hotkeySettingsTab.component.ts │ │ │ ├── multiHotkeyInput.component.pug │ │ │ ├── multiHotkeyInput.component.scss │ │ │ ├── multiHotkeyInput.component.ts │ │ │ ├── profilesSettingsTab.component.pug │ │ │ ├── profilesSettingsTab.component.scss │ │ │ ├── profilesSettingsTab.component.ts │ │ │ ├── releaseNotesTab.component.pug │ │ │ ├── releaseNotesTab.component.scss │ │ │ ├── releaseNotesTab.component.ts │ │ │ ├── setVaultPassphraseModal.component.pug │ │ │ ├── setVaultPassphraseModal.component.ts │ │ │ ├── settingsTab.component.pug │ │ │ ├── settingsTab.component.scss │ │ │ ├── settingsTab.component.ts │ │ │ ├── settingsTabBody.component.ts │ │ │ ├── showSecretModal.component.pug │ │ │ ├── showSecretModal.component.ts │ │ │ ├── vaultSettingsTab.component.pug │ │ │ ├── vaultSettingsTab.component.ts │ │ │ ├── windowSettingsTab.component.pug │ │ │ └── windowSettingsTab.component.ts │ │ ├── config.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── services/ │ │ │ └── configSync.service.ts │ │ └── settings.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-ssh/ │ ├── package.json │ ├── src/ │ │ ├── algorithms.ts │ │ ├── api/ │ │ │ ├── contextMenu.ts │ │ │ ├── importer.ts │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ │ ├── components/ │ │ │ ├── hostKeyPromptModal.component.pug │ │ │ ├── hostKeyPromptModal.component.ts │ │ │ ├── keyboardInteractiveAuthPanel.component.pug │ │ │ ├── keyboardInteractiveAuthPanel.component.scss │ │ │ ├── keyboardInteractiveAuthPanel.component.ts │ │ │ ├── sftpCreateDirectoryModal.component.pug │ │ │ ├── sftpCreateDirectoryModal.component.ts │ │ │ ├── sftpDeleteModal.component.pug │ │ │ ├── sftpDeleteModal.component.ts │ │ │ ├── sftpPanel.component.pug │ │ │ ├── sftpPanel.component.scss │ │ │ ├── sftpPanel.component.ts │ │ │ ├── sshPortForwardingConfig.component.pug │ │ │ ├── sshPortForwardingConfig.component.ts │ │ │ ├── sshPortForwardingModal.component.pug │ │ │ ├── sshPortForwardingModal.component.ts │ │ │ ├── sshProfileSettings.component.pug │ │ │ ├── sshProfileSettings.component.ts │ │ │ ├── sshSettingsTab.component.pug │ │ │ ├── sshSettingsTab.component.ts │ │ │ ├── sshTab.component.pug │ │ │ ├── sshTab.component.scss │ │ │ └── sshTab.component.ts │ │ ├── config.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── profiles.ts │ │ ├── recoveryProvider.ts │ │ ├── services/ │ │ │ ├── passwordStorage.service.ts │ │ │ ├── ssh.service.ts │ │ │ ├── sshKnownHosts.service.ts │ │ │ └── sshMultiplexer.service.ts │ │ ├── session/ │ │ │ ├── forwards.ts │ │ │ ├── sftp.ts │ │ │ ├── shell.ts │ │ │ ├── ssh.ts │ │ │ └── x11.ts │ │ ├── settings.ts │ │ ├── sftpContextMenu.ts │ │ └── tabContextMenu.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-telnet/ │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── telnetProfileSettings.component.pug │ │ │ ├── telnetProfileSettings.component.ts │ │ │ ├── telnetTab.component.pug │ │ │ ├── telnetTab.component.scss │ │ │ └── telnetTab.component.ts │ │ ├── config.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── profiles.ts │ │ ├── recoveryProvider.ts │ │ └── session.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-terminal/ │ ├── README.md │ ├── package.json │ ├── patches/ │ │ └── ansi-color+0.2.1.patch │ ├── src/ │ │ ├── api/ │ │ │ ├── baseTerminalTab.component.ts │ │ │ ├── colorSchemeProvider.ts │ │ │ ├── connectableTerminalTab.component.ts │ │ │ ├── contextMenuProvider.ts │ │ │ ├── decorator.ts │ │ │ ├── interfaces.ts │ │ │ └── middleware.ts │ │ ├── bell.ogg │ │ ├── cli.ts │ │ ├── colorSchemes.ts │ │ ├── components/ │ │ │ ├── appearanceSettingsTab.component.pug │ │ │ ├── appearanceSettingsTab.component.scss │ │ │ ├── appearanceSettingsTab.component.ts │ │ │ ├── baseTerminalTab.component.pug │ │ │ ├── baseTerminalTab.component.scss │ │ │ ├── colorPicker.component.pug │ │ │ ├── colorPicker.component.scss │ │ │ ├── colorPicker.component.ts │ │ │ ├── colorSchemePreview.component.pug │ │ │ ├── colorSchemePreview.component.scss │ │ │ ├── colorSchemePreview.component.ts │ │ │ ├── colorSchemeSelector.component.pug │ │ │ ├── colorSchemeSelector.component.ts │ │ │ ├── colorSchemeSettingsForMode.component.pug │ │ │ ├── colorSchemeSettingsForMode.component.scss │ │ │ ├── colorSchemeSettingsForMode.component.ts │ │ │ ├── colorSchemeSettingsTab.component.pug │ │ │ ├── colorSchemeSettingsTab.component.ts │ │ │ ├── inputProcessingSettings.component.pug │ │ │ ├── inputProcessingSettings.component.ts │ │ │ ├── loginScriptsSettings.component.pug │ │ │ ├── loginScriptsSettings.component.ts │ │ │ ├── searchPanel.component.pug │ │ │ ├── searchPanel.component.scss │ │ │ ├── searchPanel.component.ts │ │ │ ├── streamProcessingSettings.component.pug │ │ │ ├── streamProcessingSettings.component.ts │ │ │ ├── terminalSettingsTab.component.pug │ │ │ ├── terminalSettingsTab.component.ts │ │ │ ├── terminalToolbar.component.pug │ │ │ ├── terminalToolbar.component.scss │ │ │ └── terminalToolbar.component.ts │ │ ├── config.ts │ │ ├── features/ │ │ │ ├── debug.ts │ │ │ └── zmodem.ts │ │ ├── frontends/ │ │ │ ├── frontend.ts │ │ │ ├── xterm.css │ │ │ └── xtermFrontend.ts │ │ ├── helpers.ts │ │ ├── hotkeys.ts │ │ ├── index.ts │ │ ├── middleware/ │ │ │ ├── inputProcessing.ts │ │ │ ├── loginScriptProcessing.ts │ │ │ ├── oscProcessing.ts │ │ │ ├── streamProcessing.ts │ │ │ └── utf8Splitter.ts │ │ ├── services/ │ │ │ └── multifocus.service.ts │ │ ├── session.ts │ │ ├── settings.ts │ │ └── tabContextMenu.ts │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-uac/ │ ├── .gitignore │ ├── UAC/ │ │ ├── UAC.cpp │ │ ├── UAC.vcxproj │ │ ├── UAC.vcxproj.filters │ │ ├── UAC.vcxproj.user │ │ ├── app.manifest │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── UAC.sln ├── tabby-web/ │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── messageBoxModal.component.pug │ │ │ └── messageBoxModal.component.ts │ │ ├── config.ts │ │ ├── index.ts │ │ ├── platform.ts │ │ ├── services/ │ │ │ ├── hostApp.service.ts │ │ │ ├── hostWindow.service.ts │ │ │ ├── log.service.ts │ │ │ └── updater.service.ts │ │ └── styles.scss │ ├── tsconfig.json │ ├── tsconfig.typings.json │ └── webpack.config.mjs ├── tabby-web-demo/ │ ├── data/ │ │ ├── linux.iso │ │ ├── v86.wasm │ │ └── v86_all.js │ ├── package.json │ ├── src/ │ │ ├── buttonProvider.ts │ │ ├── components/ │ │ │ └── terminalTab.component.ts │ │ ├── index.ts │ │ ├── profiles.ts │ │ └── session.ts │ ├── tsconfig.json │ └── webpack.config.mjs ├── tsconfig.json ├── typedoc.mjs ├── web/ │ ├── entry.preload.ts │ ├── entry.ts │ ├── package.json │ ├── patches/ │ │ └── browserify-sign+4.2.1.patch │ ├── polyfills.buffer.ts │ ├── polyfills.ts │ ├── tsconfig.json │ └── webpack.config.mjs ├── webpack.config.mjs └── webpack.plugin.config.mjs ================================================ FILE CONTENTS ================================================ ================================================ FILE: .all-contributorsrc ================================================ { "files": [ "README.md", "README.zh-CN.md", "README.ru-RU.md", "README.ko-KR.md", "README.it-IT.md", "README.de-DE.md", "README.id-ID.md", "README.ja-JP.md", "README.pt-BR.md", "README.es-ES.md" ], "imageSize": 100, "commit": false, "contributors": [ { "login": "mezner", "name": "Russell Myers", "avatar_url": "https://avatars2.githubusercontent.com/u/184085?v=4", "profile": "http://www.russellmyers.com", "contributions": [ "code" ] }, { "login": "ehwarren", "name": "Austin Warren", "avatar_url": "https://avatars1.githubusercontent.com/u/3991658?v=4", "profile": "http://www.morwire.com", "contributions": [ "code" ] }, { "login": "Drachenkaetzchen", "name": "Felicia Hummel", "avatar_url": "https://avatars1.githubusercontent.com/u/162974?v=4", "profile": "https://github.com/Drachenkaetzchen", "contributions": [ "code" ] }, { "login": "mikemaccana", "name": "Mike MacCana", "avatar_url": "https://avatars2.githubusercontent.com/u/172594?v=4", "profile": "https://github.com/mikemaccana", "contributions": [ "test", "design" ] }, { "login": "yxuko", "name": "Yacine Kanzari", "avatar_url": "https://avatars1.githubusercontent.com/u/1786317?v=4", "profile": "https://github.com/yxuko", "contributions": [ "code" ] }, { "login": "BBJip", "name": "BBJip", "avatar_url": "https://avatars2.githubusercontent.com/u/32908927?v=4", "profile": "https://github.com/BBJip", "contributions": [ "code" ] }, { "login": "Futagirl", "name": "Futagirl", "avatar_url": "https://avatars2.githubusercontent.com/u/33533958?v=4", "profile": "https://github.com/Futagirl", "contributions": [ "design" ] }, { "login": "levrik", "name": "Levin Rickert", "avatar_url": "https://avatars3.githubusercontent.com/u/9491603?v=4", "profile": "https://www.levrik.io", "contributions": [ "code" ] }, { "login": "kwonoj", "name": "OJ Kwon", "avatar_url": "https://avatars2.githubusercontent.com/u/1210596?v=4", "profile": "https://kwonoj.github.io", "contributions": [ "code" ] }, { "login": "Domain", "name": "domain", "avatar_url": "https://avatars2.githubusercontent.com/u/903197?v=4", "profile": "https://github.com/Domain", "contributions": [ "plugin", "code" ] }, { "login": "kbjr", "name": "James Brumond", "avatar_url": "https://avatars1.githubusercontent.com/u/195127?v=4", "profile": "http://www.jbrumond.me", "contributions": [ "plugin" ] }, { "login": "Tyriar", "name": "Daniel Imms", "avatar_url": "https://avatars0.githubusercontent.com/u/2193314?v=4", "profile": "http://www.growingwiththeweb.com", "contributions": [ "code", "plugin", "test" ] }, { "login": "baflo", "name": "Florian Bachmann", "avatar_url": "https://avatars2.githubusercontent.com/u/834350?v=4", "profile": "https://github.com/baflo", "contributions": [ "code" ] }, { "login": "mischah", "name": "Michael Kühnel", "avatar_url": "https://avatars2.githubusercontent.com/u/441011?v=4", "profile": "http://michael-kuehnel.de", "contributions": [ "code", "design" ] }, { "login": "NieLeben", "name": "Tilmann Meyer", "avatar_url": "https://avatars3.githubusercontent.com/u/47182955?v=4", "profile": "https://github.com/NieLeben", "contributions": [ "code" ] }, { "login": "PMExtra", "name": "PM Extra", "avatar_url": "https://avatars3.githubusercontent.com/u/11289158?v=4", "profile": "http://www.jubeat.net", "contributions": [ "bug" ] }, { "login": "IgnusG", "name": "Jonathan", "avatar_url": "https://avatars1.githubusercontent.com/u/6438760?v=4", "profile": "https://jjuhas.keybase.pub//", "contributions": [ "code" ] }, { "login": "hammster", "name": "Hans Koch", "avatar_url": "https://avatars0.githubusercontent.com/u/1093709?v=4", "profile": "https://hans-koch.me", "contributions": [ "code" ] }, { "login": "ThePuzzlemaker", "name": "Dak Smyth", "avatar_url": "https://avatars3.githubusercontent.com/u/12666617?v=4", "profile": "http://thepuzzlemaker.info", "contributions": [ "code" ] }, { "login": "yfwz100", "name": "Wang Zhi", "avatar_url": "https://avatars2.githubusercontent.com/u/983211?v=4", "profile": "http://yfwz100.github.io", "contributions": [ "code" ] }, { "login": "jack1142", "name": "jack1142", "avatar_url": "https://avatars0.githubusercontent.com/u/6032823?v=4", "profile": "https://github.com/jack1142", "contributions": [ "code" ] }, { "login": "hdougie", "name": "Howie Douglas", "avatar_url": "https://avatars1.githubusercontent.com/u/450799?v=4", "profile": "https://github.com/hdougie", "contributions": [ "code" ] }, { "login": "ckaczor", "name": "Chris Kaczor", "avatar_url": "https://avatars2.githubusercontent.com/u/180906?v=4", "profile": "https://chriskaczor.com", "contributions": [ "code" ] }, { "login": "boxmein", "name": "Johannes Kadak", "avatar_url": "https://avatars1.githubusercontent.com/u/358714?v=4", "profile": "https://www.boxmein.net", "contributions": [ "code" ] }, { "login": "LeSeulArtichaut", "name": "LeSeulArtichaut", "avatar_url": "https://avatars1.githubusercontent.com/u/38361244?v=4", "profile": "https://github.com/LeSeulArtichaut", "contributions": [ "code" ] }, { "login": "CyrilTaylor", "name": "Cyril Taylor", "avatar_url": "https://avatars0.githubusercontent.com/u/12631466?v=4", "profile": "https://github.com/CyrilTaylor", "contributions": [ "code" ] }, { "login": "nstefanou", "name": "nstefanou", "avatar_url": "https://avatars3.githubusercontent.com/u/51129173?v=4", "profile": "https://github.com/nstefanou", "contributions": [ "code", "plugin" ] }, { "login": "orin220444", "name": "orin220444", "avatar_url": "https://avatars3.githubusercontent.com/u/30747229?v=4", "profile": "https://github.com/orin220444", "contributions": [ "code" ] }, { "login": "Goobles", "name": "Gobius Dolhain", "avatar_url": "https://avatars3.githubusercontent.com/u/8776771?v=4", "profile": "https://github.com/Goobles", "contributions": [ "code" ] }, { "login": "3l0w", "name": "Gwilherm Folliot", "avatar_url": "https://avatars2.githubusercontent.com/u/37798980?v=4", "profile": "https://github.com/3l0w", "contributions": [ "code" ] }, { "login": "dimitory", "name": "Dmitry Pronin", "avatar_url": "https://avatars0.githubusercontent.com/u/475955?v=4", "profile": "https://github.com/Dimitory", "contributions": [ "code" ] }, { "login": "JonathanBeverley", "name": "Jonathan Beverley", "avatar_url": "https://avatars1.githubusercontent.com/u/20328966?v=4", "profile": "https://github.com/JonathanBeverley", "contributions": [ "code" ] }, { "login": "zend", "name": "Zenghai Liang", "avatar_url": "https://avatars1.githubusercontent.com/u/25160?v=4", "profile": "https://github.com/zend", "contributions": [ "code" ] }, { "login": "matishadow", "name": "Mateusz Tracz", "avatar_url": "https://avatars0.githubusercontent.com/u/9083085?v=4", "profile": "https://about.me/matishadow", "contributions": [ "code" ] }, { "login": "pinpins", "name": "pinpin", "avatar_url": "https://avatars3.githubusercontent.com/u/36234677?v=4", "profile": "https://zergpool.com", "contributions": [ "code" ] }, { "login": "TakuroOnoda", "name": "Takuro Onoda", "avatar_url": "https://avatars0.githubusercontent.com/u/1407926?v=4", "profile": "https://github.com/TakuroOnoda", "contributions": [ "code" ] }, { "login": "frauhottelmann", "name": "frauhottelmann", "avatar_url": "https://avatars2.githubusercontent.com/u/902705?v=4", "profile": "https://github.com/frauhottelmann", "contributions": [ "code" ] }, { "login": "VectorKappa", "name": "Piotr Patalong", "avatar_url": "https://avatars.githubusercontent.com/u/29167842?v=4", "profile": "http://patalong.pl", "contributions": [ "design" ] }, { "login": "clarkwang", "name": "Clark Wang", "avatar_url": "https://avatars.githubusercontent.com/u/157076?v=4", "profile": "https://github.com/clarkwang", "contributions": [ "code" ] }, { "login": "iamchating", "name": "iamchating", "avatar_url": "https://avatars.githubusercontent.com/u/7088153?v=4", "profile": "https://github.com/iamchating", "contributions": [ "code" ] }, { "login": "starxg", "name": "starxg", "avatar_url": "https://avatars.githubusercontent.com/u/34997494?v=4", "profile": "https://github.com/starxg", "contributions": [ "plugin" ] }, { "login": "lambdalisue", "name": "Alisue", "avatar_url": "https://avatars.githubusercontent.com/u/546312?v=4", "profile": "http://hashnote.net/", "contributions": [ "design" ] }, { "login": "ydcool", "name": "Dominic Yin", "avatar_url": "https://avatars.githubusercontent.com/u/5668295?v=4", "profile": "https://github.com/ydcool", "contributions": [ "code" ] }, { "login": "bdr99", "name": "Brandon Rothweiler", "avatar_url": "https://avatars.githubusercontent.com/u/2292715?v=4", "profile": "https://github.com/bdr99", "contributions": [ "design" ] }, { "login": "logicmachine123", "name": "Logic Machine", "avatar_url": "https://avatars.githubusercontent.com/u/63876444?v=4", "profile": "https://git.io/JnP49", "contributions": [ "doc" ] }, { "login": "cypherbits", "name": "cypherbits", "avatar_url": "https://avatars.githubusercontent.com/u/10424900?v=4", "profile": "https://github.com/cypherbits", "contributions": [ "doc" ] }, { "login": "KingMob", "name": "Matthew Davidson", "avatar_url": "https://avatars.githubusercontent.com/u/946421?v=4", "profile": "https://modulolotus.net", "contributions": [ "code" ] }, { "login": "al-wi", "name": "Alexander Wiedemann", "avatar_url": "https://avatars.githubusercontent.com/u/11092199?v=4", "profile": "https://github.com/al-wi", "contributions": [ "code" ] }, { "login": "BoYeonJang", "name": "장보연", "avatar_url": "https://avatars.githubusercontent.com/u/59506394?v=4", "profile": "https://www.notion.so/3d45c6bd2cbd4f938873a4bd12e23375", "contributions": [ "doc" ] }, { "login": "Me1onRind", "name": "zZ", "avatar_url": "https://avatars.githubusercontent.com/u/19531270?v=4", "profile": "https://github.com/Me1onRind", "contributions": [ "code" ] }, { "login": "tainoNZ", "name": "Aaron Davison", "avatar_url": "https://avatars.githubusercontent.com/u/49261322?v=4", "profile": "https://github.com/tainoNZ", "contributions": [ "code" ] }, { "login": "composer404", "name": "Przemyslaw Kozik", "avatar_url": "https://avatars.githubusercontent.com/u/58251560?v=4", "profile": "https://github.com/composer404", "contributions": [ "design" ] }, { "login": "highfredo", "name": "Alfredo Arellano de la Fuente", "avatar_url": "https://avatars.githubusercontent.com/u/5951524?v=4", "profile": "https://github.com/highfredo", "contributions": [ "code" ] }, { "login": "NessunKim", "name": "MH Kim", "avatar_url": "https://avatars.githubusercontent.com/u/12974079?v=4", "profile": "https://github.com/NessunKim", "contributions": [ "code" ] }, { "login": "jaimeadf", "name": "Marmota", "avatar_url": "https://avatars.githubusercontent.com/u/40345645?v=4", "profile": "https://discord.gg/4c5EVTBhtp", "contributions": [ "design" ] }, { "login": "TENX-S", "name": "Ares Andrew", "avatar_url": "https://avatars.githubusercontent.com/u/40336192?v=4", "profile": "https://ares.zone", "contributions": [ "doc" ] }, { "login": "gkor", "name": "George Korsnick", "avatar_url": "https://avatars.githubusercontent.com/u/780052?v=4", "profile": "https://usual.io/", "contributions": [ "financial" ] }, { "login": "uluhonolulu", "name": "Artem Smirnov", "avatar_url": "https://avatars.githubusercontent.com/u/872764?v=4", "profile": "https://about.me/ulu", "contributions": [ "financial" ] }, { "login": "nevotheless", "name": "Tim Kopplow", "avatar_url": "https://avatars.githubusercontent.com/u/779797?v=4", "profile": "https://github.com/nevotheless", "contributions": [ "financial" ] }, { "login": "mrthock", "name": "mrthock", "avatar_url": "https://avatars.githubusercontent.com/u/88901709?v=4", "profile": "https://github.com/mrthock", "contributions": [ "financial" ] }, { "login": "lrottach", "name": "Lukas Rottach", "avatar_url": "https://avatars.githubusercontent.com/u/50323692?v=4", "profile": "https://github.com/lrottach", "contributions": [ "financial" ] }, { "login": "boonkerz", "name": "boonkerz", "avatar_url": "https://avatars.githubusercontent.com/u/277321?v=4", "profile": "https://github.com/boonkerz", "contributions": [ "code", "translation" ] }, { "login": "milotype", "name": "Milo Ivir", "avatar_url": "https://avatars.githubusercontent.com/u/43657314?v=4", "profile": "https://github.com/milotype", "contributions": [ "translation" ] }, { "login": "JasonCubic", "name": "JasonCubic", "avatar_url": "https://avatars.githubusercontent.com/u/8921015?v=4", "profile": "https://github.com/JasonCubic", "contributions": [ "design" ] }, { "login": "MaxWaldorf", "name": "MaxWaldorf", "avatar_url": "https://avatars.githubusercontent.com/u/15877853?v=4", "profile": "https://github.com/MaxWaldorf", "contributions": [ "infra" ] }, { "login": "mwz", "name": "Michael Wizner", "avatar_url": "https://avatars.githubusercontent.com/u/1190768?v=4", "profile": "https://github.com/mwz", "contributions": [ "code" ] }, { "login": "mgrulich", "name": "Martin", "avatar_url": "https://avatars.githubusercontent.com/u/781036?v=4", "profile": "https://github.com/mgrulich", "contributions": [ "code" ] }, { "login": "piersandro", "name": "Piersandro Guerrera", "avatar_url": "https://avatars.githubusercontent.com/u/19996309?v=4", "profile": "https://github.com/piersandro", "contributions": [ "doc", "translation" ] }, { "login": "0x973", "name": "0x973", "avatar_url": "https://avatars.githubusercontent.com/u/19320096?v=4", "profile": "https://github.com/0x973", "contributions": [ "code" ] }, { "login": "Allenator", "name": "Allenator", "avatar_url": "https://avatars.githubusercontent.com/u/11794943?v=4", "profile": "https://github.com/Allenator", "contributions": [ "doc" ] }, { "login": "microhobby", "name": "Matheus Castello", "avatar_url": "https://avatars.githubusercontent.com/u/2633321?v=4", "profile": "http://microhobby.com.br/blog", "contributions": [ "code" ] }, { "login": "Jai-JAP", "name": "Jai A P", "avatar_url": "https://avatars.githubusercontent.com/u/78354625?v=4", "profile": "https://github.com/Jai-JAP", "contributions": [ "platform" ] }, { "login": "ysc3839", "name": "Richard Yu", "avatar_url": "https://avatars.githubusercontent.com/u/12028138?v=4", "profile": "https://blog.ysc3839.com", "contributions": [ "code" ] }, { "login": "artu-ole", "name": "artu-ole", "avatar_url": "https://avatars.githubusercontent.com/u/15938416?v=4", "profile": "https://github.com/artu-ole", "contributions": [ "code" ] }, { "login": "TimaGribanov", "name": "Timofey Gribanov", "avatar_url": "https://avatars.githubusercontent.com/u/48593815?v=4", "profile": "https://timagribanov.github.io/", "contributions": [ "doc", "translation" ] }, { "login": "ChristianBingman", "name": "Christian Bingman", "avatar_url": "https://avatars.githubusercontent.com/u/42191425?v=4", "profile": "https://git.christianbingman.com", "contributions": [ "code" ] }, { "login": "Ox0400", "name": "zhipeng", "avatar_url": "https://avatars.githubusercontent.com/u/5310853?v=4", "profile": "http://zhangzhipeng2023.cn/", "contributions": [ "code" ] }, { "login": "woodmeal", "name": "woodmeal", "avatar_url": "https://avatars.githubusercontent.com/u/104011197?v=4", "profile": "https://github.com/woodmeal", "contributions": [ "code" ] }, { "login": "MagicLike", "name": "MagicLike", "avatar_url": "https://avatars.githubusercontent.com/u/82117109?v=4", "profile": "https://magiclike.codeberg.page/", "contributions": [ "doc" ] }, { "login": "hisamafahri", "name": "Hisam Fahri", "avatar_url": "https://avatars.githubusercontent.com/u/65691613?v=4", "profile": "https://github.com/hisamafahri", "contributions": [ "code" ] }, { "login": "LiangchengJ", "name": "Liangcheng Juves", "avatar_url": "https://avatars.githubusercontent.com/u/48881023?v=4", "profile": "https://liangchengj.com", "contributions": [ "code" ] }, { "login": "attet", "name": "Atte Timonen", "avatar_url": "https://avatars.githubusercontent.com/u/1911416?v=4", "profile": "https://github.com/attet", "contributions": [ "code" ] }, { "login": "joaompinto", "name": "João Pinto", "avatar_url": "https://avatars.githubusercontent.com/u/1143125?v=4", "profile": "https://www.linkedin.com/in/joaolmpinto/", "contributions": [ "doc" ] }, { "login": "Qiming-Liu", "name": "Alan", "avatar_url": "https://avatars.githubusercontent.com/u/68600416?v=4", "profile": "https://github.com/Qiming-Liu", "contributions": [ "code" ] }, { "login": "74th", "name": "Atsushi Morimoto", "avatar_url": "https://avatars.githubusercontent.com/u/1060011?v=4", "profile": "https://74th.tech/", "contributions": [ "financial" ] }, { "login": "aarles", "name": "Arles", "avatar_url": "https://avatars.githubusercontent.com/u/5369096?v=4", "profile": "https://arles.red/", "contributions": [ "financial" ] }, { "login": "six2dez", "name": "six2dez", "avatar_url": "https://avatars.githubusercontent.com/u/24670991?v=4", "profile": "https://pentestbook.six2dez.com/", "contributions": [ "financial" ] }, { "login": "CandiceJoy", "name": "Candice", "avatar_url": "https://avatars.githubusercontent.com/u/8854890?v=4", "profile": "https://github.com/CandiceJoy", "contributions": [ "financial" ] }, { "login": "kingrowen", "name": "Rowen Willabus", "avatar_url": "https://avatars.githubusercontent.com/u/13178700?v=4", "profile": "https://github.com/kingrowen", "contributions": [ "financial" ] }, { "login": "HengY1Sky", "name": "HengY1Coding✨", "avatar_url": "https://avatars.githubusercontent.com/u/98681454?v=4", "profile": "https://hengy1.top/", "contributions": [ "financial" ] }, { "login": "FrancisHG", "name": "Francis Gelderloos", "avatar_url": "https://avatars.githubusercontent.com/u/1611626?v=4", "profile": "https://github.com/FrancisHG", "contributions": [ "financial" ] }, { "login": "astromasoud", "name": "astromasoud", "avatar_url": "https://avatars.githubusercontent.com/u/18737721?v=4", "profile": "https://github.com/astromasoud", "contributions": [ "financial" ] }, { "login": "Spirit55555", "name": "Anders G. Jørgensen", "avatar_url": "https://avatars.githubusercontent.com/u/2357565?v=4", "profile": "https://spirit55555.dk/", "contributions": [ "financial" ] }, { "login": "djradon", "name": "Dave Richardson", "avatar_url": "https://avatars.githubusercontent.com/u/5224156?v=4", "profile": "https://github.com/djradon", "contributions": [ "financial" ] }, { "login": "tpberntsen", "name": "Thomas Peter Berntsen", "avatar_url": "https://avatars.githubusercontent.com/u/922318?v=4", "profile": "https://twitter.com/tpberntsen", "contributions": [ "financial" ] }, { "login": "eltociear", "name": "Ikko Ashimine", "avatar_url": "https://avatars.githubusercontent.com/u/22633385?v=4", "profile": "https://bandism.net/", "contributions": [ "doc" ] }, { "login": "giejqf", "name": "giejqf", "avatar_url": "https://avatars.githubusercontent.com/u/9211230?v=4", "profile": "https://github.com/giejqf", "contributions": [ "code" ] }, { "login": "LacazeThomas", "name": "Thomas LACAZE", "avatar_url": "https://avatars.githubusercontent.com/u/19855907?v=4", "profile": "https://github.com/LacazeThomas", "contributions": [ "code" ] }, { "login": "princemaple", "name": "Po Chen", "avatar_url": "https://avatars.githubusercontent.com/u/1329716?v=4", "profile": "https://pochen.me/", "contributions": [ "financial" ] }, { "login": "mzmznasipadang", "name": "Victor Chandra", "avatar_url": "https://avatars.githubusercontent.com/u/41635105?v=4", "profile": "https://victorchandra.carrd.co/", "contributions": [ "doc" ] }, { "login": "daniel347x", "name": "Dan Nissenbaum", "avatar_url": "https://avatars.githubusercontent.com/u/309746?v=4", "profile": "https://github.com/daniel347x", "contributions": [ "financial" ] }, { "login": "DunklerPhoenix", "name": "RogueThorn", "avatar_url": "https://avatars.githubusercontent.com/u/1261305?v=4", "profile": "https://github.com/DunklerPhoenix", "contributions": [ "financial" ] }, { "login": "spenserblack", "name": "Spenser Black", "avatar_url": "https://avatars.githubusercontent.com/u/8546709?v=4", "profile": "http://spenserblack.github.io", "contributions": [ "code" ] }, { "login": "zuedev", "name": "Alex", "avatar_url": "https://avatars.githubusercontent.com/u/24614929?v=4", "profile": "https://github.com/zuedev", "contributions": [ "financial" ] }, { "login": "HengY1Cola", "name": "HengY1Coding✨", "avatar_url": "https://avatars.githubusercontent.com/u/98681454?v=4", "profile": "https://hengy1.top/", "contributions": [ "financial" ] }, { "login": "dcarrero", "name": "David Carrero", "avatar_url": "https://avatars.githubusercontent.com/u/195768?v=4", "profile": "https://www.stackscale.com/", "contributions": [ "doc" ] }, { "login": "zhoro", "name": "Andrii Zhovtiak", "avatar_url": "https://avatars.githubusercontent.com/u/1105687?v=4", "profile": "https://github.com/zhoro", "contributions": [ "code" ] }, { "login": "JohnMasoner", "name": "Mason Ma", "avatar_url": "https://avatars.githubusercontent.com/u/42313377?v=4", "profile": "https://github.com/JohnMasoner", "contributions": [ "financial" ] }, { "login": "ntimo", "name": "Timo", "avatar_url": "https://avatars.githubusercontent.com/u/6145026?v=4", "profile": "https://github.com/ntimo", "contributions": [ "financial" ] }, { "login": "EvinRWatson", "name": "Evin Watson", "avatar_url": "https://avatars.githubusercontent.com/u/24227251?v=4", "profile": "https://www.linkedin.com/in/evinwatson/", "contributions": [ "doc" ] }, { "login": "deulizealand", "name": "Hendra Juli", "avatar_url": "https://avatars.githubusercontent.com/u/15981200?v=4", "profile": "https://t.me/hendrjl", "contributions": [ "doc" ] }, { "login": "wkricowski", "name": "Wellinton Kricowski", "avatar_url": "https://avatars.githubusercontent.com/u/36803521?v=4", "profile": "https://github.com/wkricowski", "contributions": [ "financial", "doc" ] }, { "login": "almzau", "name": "Allan", "avatar_url": "https://avatars.githubusercontent.com/u/29115846?v=4", "profile": "https://github.com/almzau", "contributions": [ "design" ] }, { "login": "BenjaminBrandmeier", "name": "Benjamin Brandmeier", "avatar_url": "https://avatars.githubusercontent.com/u/17959794?v=4", "profile": "https://oidamo.de", "contributions": [ "code" ] }, { "login": "patric1025", "name": "patric1025", "avatar_url": "https://avatars.githubusercontent.com/u/65654040?v=4", "profile": "https://github.com/patric1025", "contributions": [ "translation" ] }, { "login": "hermitpopcorn", "name": "hermitpopcorn", "avatar_url": "https://avatars.githubusercontent.com/u/16042129?v=4", "profile": "https://github.com/hermitpopcorn", "contributions": [ "code" ] }, { "login": "joshuatz", "name": "Joshua Tzucker", "avatar_url": "https://avatars.githubusercontent.com/u/17817563?v=4", "profile": "https://joshuatz.com/", "contributions": [ "financial" ] }, { "login": "luxifr", "name": "luxifr", "avatar_url": "https://avatars.githubusercontent.com/u/665715?v=4", "profile": "https://github.com/luxifr", "contributions": [ "financial" ] }, { "login": "ukulanne", "name": "Anne Summers", "avatar_url": "https://avatars.githubusercontent.com/u/28586666?v=4", "profile": "https://github.com/ukulanne", "contributions": [ "financial" ] }, { "login": "Clem-Fern", "name": "Clem", "avatar_url": "https://avatars.githubusercontent.com/u/20025949?v=4", "profile": "https://github.com/Clem-Fern", "contributions": [ "code" ] }, { "login": "elizabeth-dev", "name": "Elizabeth Martín Campos", "avatar_url": "https://avatars.githubusercontent.com/u/13015727?v=4", "profile": "https://github.com/elizabeth-dev", "contributions": [ "code" ] }, { "login": "siccous", "name": "Tomáš Hruška", "avatar_url": "https://avatars.githubusercontent.com/u/7812885?v=4", "profile": "https://github.com/siccous", "contributions": [ "code" ] }, { "login": "karaketir16", "name": "Osman Karaketir", "avatar_url": "https://avatars.githubusercontent.com/u/27349806?v=4", "profile": "https://github.com/karaketir16", "contributions": [ "code" ] }, { "login": "CryptoGnome", "name": "Crypto Gnome", "avatar_url": "https://avatars.githubusercontent.com/u/33667144?v=4", "profile": "https://www.gnomegarden.io/", "contributions": [ "financial" ] }, { "login": "rbukovansky", "name": "Richard Bukovansky", "avatar_url": "https://avatars.githubusercontent.com/u/1004491?v=4", "profile": "https://github.com/rbukovansky", "contributions": [ "financial" ] }, { "login": "pseudocc", "name": "catlas", "avatar_url": "https://avatars.githubusercontent.com/u/85104110?v=4", "profile": "https://github.com/pseudocc", "contributions": [ "financial" ] }, { "login": "Kapocsi", "name": "Thomas Kapocsi", "avatar_url": "https://avatars.githubusercontent.com/u/84490604?v=4", "profile": "http://kapocsi.ca", "contributions": [ "doc" ] }, { "login": "dylhack", "name": "Dylan Hackworth", "avatar_url": "https://avatars.githubusercontent.com/u/27179786?v=4", "profile": "https://dylhack.dev/", "contributions": [ "financial" ] }, { "login": "echo304", "name": "Sangboak Lee", "avatar_url": "https://avatars.githubusercontent.com/u/16456651?v=4", "profile": "https://github.com/echo304", "contributions": [ "code" ] }, { "login": "qyecst", "name": "qyecst", "avatar_url": "https://avatars.githubusercontent.com/u/13901864?v=4", "profile": "https://github.com/qyecst", "contributions": [ "code" ] }, { "login": "DehanLUO", "name": "Han", "avatar_url": "https://avatars.githubusercontent.com/u/53093688?v=4", "profile": "https://github.com/DehanLUO", "contributions": [ "code" ] }, { "login": "wljince007", "name": "wljince007", "avatar_url": "https://avatars.githubusercontent.com/u/88243938?v=4", "profile": "https://github.com/wljince007", "contributions": [ "code" ] }, { "login": "FeroTheFox", "name": "fero", "avatar_url": "https://avatars.githubusercontent.com/u/52982404?v=4", "profile": "https://github.com/FeroTheFox", "contributions": [ "code" ] }, { "login": "siebsie23", "name": "Sibren", "avatar_url": "https://avatars.githubusercontent.com/u/25083973?v=4", "profile": "https://siebsie23.nl/", "contributions": [ "code" ] }, { "login": "nwalser", "name": "Nathaniel Walser", "avatar_url": "https://avatars.githubusercontent.com/u/33339996?v=4", "profile": "https://www.nathaniel-walser.com", "contributions": [ "code" ] }, { "login": "aaronhuggins", "name": "Aaron Huggins", "avatar_url": "https://avatars.githubusercontent.com/u/16567111?v=4", "profile": "https://github.com/aaronhuggins", "contributions": [ "design" ] }, { "login": "zKXDEX", "name": "KDex", "avatar_url": "https://avatars.githubusercontent.com/u/66271780?v=4", "profile": "https://zkxdex.github.io/", "contributions": [ "code" ] }, { "login": "kimbob13", "name": "ChangHwan Kim", "avatar_url": "https://avatars.githubusercontent.com/u/26755098?v=4", "profile": "https://github.com/kimbob13", "contributions": [ "code" ] }, { "login": "ashneilson", "name": "Ash Neilson", "avatar_url": "https://avatars.githubusercontent.com/u/35913512?v=4", "profile": "https://github.com/ashneilson", "contributions": [ "code" ] }, { "login": "cfs4819", "name": "Chen Fansong", "avatar_url": "https://avatars.githubusercontent.com/u/53071761?v=4", "profile": "https://github.com/cfs4819", "contributions": [ "code" ] }, { "login": "Mxmilu666", "name": "Mxmilu", "avatar_url": "https://avatars.githubusercontent.com/u/82694310?v=4", "profile": "https://5k.work/", "contributions": [ "code" ] }, { "login": "C41M50N", "name": "Charles Buffington", "avatar_url": "https://avatars.githubusercontent.com/u/29805363?v=4", "profile": "https://cbuff.dev", "contributions": [ "code" ] }, { "login": "GeminiLn", "name": "Yu Qin", "avatar_url": "https://avatars.githubusercontent.com/u/12425057?v=4", "profile": "https://github.com/GeminiLn", "contributions": [ "code" ] }, { "login": "fireblue", "name": "fireblue", "avatar_url": "https://avatars.githubusercontent.com/u/1034929?v=4", "profile": "https://github.com/fireblue", "contributions": [ "code" ] }, { "login": "marko1616", "name": "marko1616", "avatar_url": "https://avatars.githubusercontent.com/u/45327989?v=4", "profile": "https://github.com/marko1616", "contributions": [ "code" ] }, { "login": "SelfHosted-Club", "name": "SelfHosted", "avatar_url": "https://avatars.githubusercontent.com/u/128927132?v=4", "profile": "https://www.selfhosted.sg/", "contributions": [ "financial" ] }, { "login": "xhiroga", "name": "Hiroaki Ogasawara", "avatar_url": "https://avatars.githubusercontent.com/u/13391129?v=4", "profile": "http://hiroga.hatenablog.com/", "contributions": [ "code" ] }, { "login": "geodic", "name": "geodic", "avatar_url": "https://avatars.githubusercontent.com/u/64704703?v=4", "profile": "https://github.com/geodic", "contributions": [ "code" ] }, { "login": "pfoundation", "name": "P Foundation", "avatar_url": "https://avatars.githubusercontent.com/u/80860929?v=4", "profile": "https://p.foundation/", "contributions": [ "financial" ] }, { "login": "et304383", "name": "et304383", "avatar_url": "https://avatars.githubusercontent.com/u/2693414?v=4", "profile": "https://github.com/et304383", "contributions": [ "code" ] }, { "login": "ajkrj", "name": "ajkrj", "avatar_url": "https://avatars.githubusercontent.com/u/210226755?v=4", "profile": "https://github.com/ajkrj", "contributions": [ "code" ] }, { "login": "leoberbert", "name": "Leonardo Berbert", "avatar_url": "https://avatars.githubusercontent.com/u/16724862?v=4", "profile": "https://www.linkedin.com/in/leoberbert/", "contributions": [ "code" ] } ], "contributorsPerLine": 7, "projectName": "tabby", "projectOwner": "Eugeny", "repoType": "github", "repoHost": "https://github.com", "commitConvention": "none", "skipCi": true, "commitType": "docs" } ================================================ FILE: .editorconfig ================================================ root = true [*] end_of_line = LF charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.sln] indent_style = tab # TODO Determine if there is a preferred tab width for this file type # Programming/Scripts [*.{js,ts}] indent_style = space indent_size = 4 [*.cpp] indent_style = tab # TODO Determine if there is a preferred tab width for this file type # Markup [*.pug] indent_style = space indent_size = 4 # Stylesheets [*.scss] indent_style = space indent_size = 4 # Data Files [*.json] indent_style = space indent_size = 2 [*.{yaml,yml}] indent_style = space indent_size = 2 ================================================ FILE: .eslintrc.yml ================================================ settings: import/parsers: '@typescript-eslint/parser': ['.ts'] import/resolver: typescript: project: - tsconfig.json - tabby-*/tsconfig.json node: true env: browser: true es6: true node: true commonjs: true overrides: - files: '*.mjs' plugins: - 'import' parserOptions: sourceType: module ecmaVersion: latest - files: '*.ts' parser: '@typescript-eslint/parser' parserOptions: project: - tsconfig.json - '*/tsconfig.typings.json' extends: - 'plugin:@typescript-eslint/all' - plugin:import/recommended - plugin:import/typescript plugins: - '@typescript-eslint' - import rules: '@typescript-eslint/semi': - error - never '@typescript-eslint/indent': - error - 4 '@typescript-eslint/explicit-member-accessibility': - error - accessibility: no-public overrides: parameterProperties: explicit '@typescript-eslint/no-require-imports': off '@typescript-eslint/no-parameter-properties': off '@typescript-eslint/explicit-function-return-type': off '@typescript-eslint/no-explicit-any': off '@typescript-eslint/no-magic-numbers': off '@typescript-eslint/member-delimiter-style': off '@typescript-eslint/promise-function-async': off '@typescript-eslint/require-array-sort-compare': off '@typescript-eslint/no-floating-promises': off '@typescript-eslint/prefer-readonly': off '@typescript-eslint/require-await': off '@typescript-eslint/strict-boolean-expressions': off '@typescript-eslint/no-misused-promises': - error - checksVoidReturn: false '@typescript-eslint/typedef': off '@typescript-eslint/consistent-type-imports': off '@typescript-eslint/sort-type-union-intersection-members': off '@typescript-eslint/no-use-before-define': - error - classes: false no-duplicate-imports: error array-bracket-spacing: - error - never block-scoped-var: error brace-style: off '@typescript-eslint/brace-style': - error - 1tbs - allowSingleLine: true computed-property-spacing: - error - never comma-dangle: off '@typescript-eslint/comma-dangle': - error - always-multiline curly: error eol-last: error eqeqeq: - error - smart max-depth: - 1 - 5 max-statements: - 1 - 80 no-multiple-empty-lines: error no-mixed-spaces-and-tabs: error no-trailing-spaces: error '@typescript-eslint/no-unused-vars': - error - vars: all args: after-used argsIgnorePattern: ^_ no-undef: error no-var: error object-curly-spacing: off '@typescript-eslint/object-curly-spacing': - error - always quote-props: - warn - as-needed - keywords: true numbers: true quotes: off '@typescript-eslint/quotes': - error - single - allowTemplateLiterals: true '@typescript-eslint/no-confusing-void-expression': - error - ignoreArrowShorthand: true '@typescript-eslint/no-non-null-assertion': off '@typescript-eslint/no-unnecessary-condition': - error - allowConstantLoopConditions: true '@typescript-eslint/restrict-template-expressions': off '@typescript-eslint/prefer-readonly-parameter-types': off '@typescript-eslint/no-unsafe-member-access': off '@typescript-eslint/no-unsafe-call': off '@typescript-eslint/no-unsafe-return': off '@typescript-eslint/no-unsafe-assignment': off '@typescript-eslint/naming-convention': off '@typescript-eslint/lines-between-class-members': - error - always - exceptAfterSingleLine: true '@typescript-eslint/dot-notation': off '@typescript-eslint/no-implicit-any-catch': off '@typescript-eslint/member-ordering': off '@typescript-eslint/no-var-requires': off '@typescript-eslint/no-unsafe-argument': off '@typescript-eslint/restrict-plus-operands': off '@typescript-eslint/space-infix-ops': off '@typescript-eslint/no-type-alias': - error - allowAliases: in-unions-and-intersections allowLiterals: always allowCallbacks: always '@typescript-eslint/sort-type-constituents': off '@typescript-eslint/parameter-properties': - error - prefer: parameter-property 'import/no-named-as-default-member': off '@typescript-eslint/consistent-type-exports': off '@typescript-eslint/consistent-generic-constructors': off 'keyword-spacing': off '@typescript-eslint/keyword-spacing': off '@typescript-eslint/class-methods-use-this': off '@typescript-eslint/lines-around-comment': off '@typescript-eslint/no-redundant-type-constituents': off # broken ================================================ FILE: .github/FUNDING.yml ================================================ github: eugeny open_collective: tabby ko_fi: eugeny ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/ISSUE_TEMPLATE/issue-report.md ================================================ --- name: Issue report about: Report a problem title: '' labels: 'T: Bug' assignees: '' --- **Describe the problem**: [A clear and concise description of what the bug is.] **To Reproduce**: [Steps to reproduce the behavior] ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/app" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-core" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-settings" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-terminal" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-local" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-community-color-schemes" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-electron" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-web" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-plugin-manager" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: npm directory: "/tabby-ssh" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 - package-ecosystem: github-actions directory: "/" schedule: interval: daily time: "04:00" open-pull-requests-limit: 20 ================================================ FILE: .github/stale.yml ================================================ # Number of days of inactivity before an issue becomes stale daysUntilStale: 180 # Number of days of inactivity before a stale issue is closed daysUntilClose: 90 # Issues with these labels will never be considered stale exemptLabels: - "T: Enhancement" - "S: Confirmed" # Label to use when marking an issue as stale staleLabel: "S: Stale" # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed in two weeks unless you comment. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false ================================================ FILE: .github/workflows/build.yml ================================================ name: Package-Build on: [push, pull_request] jobs: Lint: runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Installing Node uses: actions/setup-node@v4.4.0 with: node-version: 22 - name: Install deps run: | sudo apt-get update && sudo apt-get install -y libfontconfig1-dev npm i -g yarn cd app yarn cd .. rm app/node_modules/.yarn-integrity yarn - name: Build typings run: yarn run build:typings - name: Lint run: yarn run lint macOS-Build: runs-on: macos-15 needs: Lint strategy: matrix: include: - arch: x86_64 rust_triple: x86_64-apple-darwin - arch: arm64 rust_triple: aarch64-apple-darwin fail-fast: false env: ARCH: ${{matrix.arch}} RUST_TARGET_TRIPLE: ${{matrix.rust_triple}} steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Installing Node uses: actions/setup-node@v4.4.0 with: node-version: 22 - run: rustup target add ${{matrix.rust_triple}} - name: Install deps run: | yarn --network-timeout 1000000 env: ARCH: ${{matrix.arch}} - name: Webpack run: yarn run build - name: Prepackage plugins run: scripts/prepackage-plugins.mjs env: ARCH: ${{matrix.arch}} - run: sed -i '' 's/updateInfo = await/\/\/updateInfo = await/g' node_modules/app-builder-lib/out/targets/ArchiveTarget.js # Work around electron-builder beta bug - run: ln -s ../../node_modules/electron app/node_modules - name: Build and sign packages run: scripts/build-macos.mjs if: github.event_name == 'push' && (github.ref_protected || startsWith(github.ref, 'refs/tags')) env: ARCH: ${{matrix.arch}} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }} CSC_LINK: ${{ secrets.CSC_LINK }} CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} APPSTORE_USERNAME: ${{ secrets.APPSTORE_USERNAME }} APPSTORE_PASSWORD: ${{ secrets.APPSTORE_PASSWORD }} USE_HARD_LINKS: false # DEBUG: electron-builder,electron-builder:* - name: Build packages without signing run: scripts/build-macos.mjs if: "! (github.event_name == 'push' && (github.ref_protected || startsWith(github.ref, 'refs/tags')))" env: ARCH: ${{matrix.arch}} # DEBUG: electron-builder,electron-builder:* - name: Upload symbols run: | sudo npm install -g @sentry/cli --unsafe-perm ./scripts/sentry-upload.mjs env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} - name: Package artifacts run: | mkdir artifact-dmg mv dist/*.dmg artifact-dmg/ mkdir artifact-zip mv dist/*.zip artifact-zip/ - uses: actions/upload-artifact@master name: Upload DMG with: name: macOS .dmg (${{matrix.arch}}) path: artifact-dmg - uses: actions/upload-artifact@master name: Upload ZIP with: name: macOS .zip (${{matrix.arch}}) path: artifact-zip Linux-Build: runs-on: ${{matrix.os}} needs: Lint strategy: matrix: include: - build-arch: x64 arch: amd64 rust_triple: x86_64-unknown-linux-gnu os: ubuntu-24.04 - build-arch: arm64 arch: arm64 rust_triple: aarch64-unknown-linux-gnu triplet: aarch64-linux-gnu- os: ubuntu-24.04-arm - build-arch: arm arch: armhf rust_triple: arm-unknown-linux-gnueabihf triplet: arm-linux-gnueabihf- os: ubuntu-24.04 fail-fast: false env: CC: ${{matrix.triplet}}gcc CXX: ${{matrix.triplet}}g++ ARCH: ${{matrix.build-arch}} npm_config_arch: ${{matrix.build-arch}} npm_config_target_arch: ${{matrix.build-arch}} RUST_TARGET_TRIPLE: ${{matrix.rust_triple}} steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Node uses: actions/setup-node@v4.4.0 with: node-version: 22 - name: Install FPM run: | sudo gem install fpm - run: rustup target add ${{matrix.rust_triple}} - name: Install dependencies run: | sudo apt-get update sudo apt-get install libfontconfig1-dev libarchive-tools zsh crossbuild-essential-${{matrix.arch}} - name: Setup tar to run as root run: sudo chmod u+s "$(command -v tar)" if: matrix.build-arch == 'arm' - name: Download cached sysroot uses: actions/cache@v3 id: dl-cached-sysroot if: matrix.build-arch == 'arm' with: key: sysroot-${{matrix.build-arch}} path: /${{matrix.build-arch}}-sysroot - name: Setup crossbuild sysroot run: | sudo apt-get update -y && sudo apt-get install debootstrap qemu-user-static binfmt-support -y sudo qemu-debootstrap --include=libfontconfig1-dev,libsecret-1-dev,libnss3,libatk1.0-0,libatk-bridge2.0-0,libgdk-pixbuf2.0-0,libgtk-3-0,libgbm1 --variant=buildd --exclude=snapd --components=main,restricted,universe,multiverse --extractor=dpkg-deb --arch ${{matrix.arch}} bionic /${{matrix.build-arch}}-sysroot/ http://ports.ubuntu.com/ubuntu-ports/ sudo find /${{matrix.build-arch}}-sysroot -type l -lname '/*' -exec sh -c 'file="$0"; dir=$(dirname "$file"); target=$(readlink "$0"); prefix=$(dirname "$dir" | sed 's@[^/]*@\.\.@g'); newtarget="$prefix$target"; ln -snf $newtarget $file' {} \; ; if: matrix.build-arch == 'arm' && steps.dl-cached-sysroot.outputs.cache-hit != 'true' - name: Setup env to use ${{matrix.build-arch}} sysroot run: | echo "CFLAGS=--sysroot=/${{matrix.build-arch}}-sysroot/" >> $GITHUB_ENV echo "CXXFLAGS=--sysroot=/${{matrix.build-arch}}-sysroot/" >> $GITHUB_ENV echo "LDFLAGS=--sysroot=/${{matrix.build-arch}}-sysroot/" >> $GITHUB_ENV [[ ${npm_config_arch} == 'arm' ]] && echo "npm_config_arch=armv7l" >> $GITHUB_ENV if [[ ${{matrix.arch}} == 'armhf' ]]; then echo "PKG_CONFIG_PATH=/${{matrix.build-arch}}-sysroot/usr/lib/pkgconfig/:/${{matrix.build-arch}}-sysroot/usr/lib/arm-linux-gnueabihf/pkgconfig/" >> $GITHUB_ENV elif [[ ${{matrix.arch}} == 'arm64' ]]; then echo "PKG_CONFIG_PATH=/${{matrix.build-arch}}-sysroot/usr/lib/pkgconfig/:/${{matrix.build-arch}}-sysroot/usr/lib/aarch64-linux-gnu/pkgconfig/" >> $GITHUB_ENV fi if: matrix.build-arch == 'arm' - name: Install npm_modules (native) run: | npm i -g yarn node-gyp yarn --network-timeout 1000000 --arch=${{matrix.build-arch}} --target-arch=${{matrix.build-arch}} - name: Webpack (${{matrix.arch}}) run: yarn run build --arch=${{matrix.build-arch}} --target_arch=${{matrix.build-arch}} - name: Prepackage plugins (${{matrix.arch}}) run: scripts/prepackage-plugins.mjs - name: Build packages (${{matrix.arch}}) run: scripts/build-linux.mjs env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }} USE_HARD_LINKS: false USE_SYSTEM_FPM: true # DEBUG: electron-builder,electron-builder:* - name: Build web resources (amd64 only) run: zsh -c 'tar czf tabby-web.tar.gz (tabby-*|web)/dist' if: matrix.build-arch == 'x64' - name: Upload symbols (amd64 only) run: | sudo npm install -g @sentry/cli --unsafe-perm ./scripts/sentry-upload.mjs if: matrix.build-arch == 'x64' env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} - name: Upload packages to packagecloud.io uses: TykTechnologies/packagecloud-action@main if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') env: PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} with: repo: 'eugeny/tabby' dir: 'dist' rpmvers: 'el/9 el/8 ol/6 ol/7' debvers: 'ubuntu/bionic ubuntu/focal ubuntu/hirsute ubuntu/impish ubuntu/jammy ubuntu/kinetic ubuntu/noble ubuntu/oracular debian/jessie debian/stretch debian/buster debian/bullseye debian/bookworm debian/trixie debian/forky debian/duke debian/testing debian/unstable debian/sid' - uses: actions/upload-artifact@master name: Upload AppImage (${{matrix.arch}}) with: name: Linux AppImage (${{matrix.arch}}) path: dist/*.AppImage - uses: actions/upload-artifact@master name: Upload DEB (${{matrix.arch}}) with: name: Linux DEB (${{matrix.arch}}) path: dist/*.deb - uses: actions/upload-artifact@master name: Upload RPM (${{matrix.arch}}) with: name: Linux RPM (${{matrix.arch}}) path: dist/*.rpm - uses: actions/upload-artifact@master name: Upload Pacman Package (${{matrix.arch}}) with: name: Linux Pacman (${{matrix.arch}}) path: dist/*.pacman - uses: actions/upload-artifact@master name: Upload Linux tarball (${{matrix.arch}}) with: name: Linux tarball (${{matrix.arch}}) path: dist/*.tar.gz - uses: actions/upload-artifact@master name: Upload web tarball (amd64 only) with: name: Web tarball path: tabby-web.tar.gz if: matrix.build-arch == 'x64' Windows-Build: runs-on: windows-latest needs: Lint strategy: matrix: include: - arch: x64 rust_triple: x86_64-pc-windows-msvc - arch: arm64 rust_triple: aarch64-pc-windows-msvc fail-fast: false env: RUST_TARGET_TRIPLE: ${{matrix.rust_triple}} ARCH: ${{matrix.arch}} steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Code signing with Software Trust Manager uses: digicert/ssm-code-signing@v1.1.1 if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')) env: FORCE_DOWNLOAD_TOOLS: 'true' - name: Installing Node uses: actions/setup-node@v4.4.0 with: node-version: 22 - run: npm i -g npx - run: rustup target add ${{matrix.rust_triple}} - name: Update node-gyp run: | npm install --global node-gyp@10.2.0 npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} - name: Build shell: powershell run: | npm i -g yar node-gyp yarn --network-timeout 1000000 yarn run build node scripts/prepackage-plugins.mjs env: ARCH: ${{matrix.arch}} - name: Decode certificate if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')) env: SM_CLIENT_CERT_FILE_B64: ${{ secrets.SM_CLIENT_CERT_FILE_B64 }} run: | SM_CLIENT_CERT_FILE=$RUNNER_TEMP/certificate.p12 echo "$SM_CLIENT_CERT_FILE_B64" | base64 --decode > $SM_CLIENT_CERT_FILE echo "SM_CLIENT_CERT_FILE=$SM_CLIENT_CERT_FILE" >> "$GITHUB_ENV" shell: bash - name: Build and sign packages if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')) shell: powershell run: | Get-FileHash $env:SM_CLIENT_CERT_FILE -Algorithm MD5 smksp_registrar.exe list smctl.exe healthcheck smctl.exe keypair ls smctl windows certsync --keypair-alias $env:SM_KEYPAIR_ALIAS smctl.exe certificate ls C:\Windows\System32\certutil.exe -csp "DigiCert Signing Manager KSP" -key -user smksp_cert_sync.exe # not used but necessary for electron-builder to run $env:WIN_CSC_LINK=$env:SM_CLIENT_CERT_FILE $env:WIN_CSC_KEY_PASSWORD=$env:SM_CLIENT_CERT_PASSWORD node scripts/build-windows.mjs env: ARCH: ${{matrix.arch}} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} KEYGEN_TOKEN: ${{ secrets.KEYGEN_TOKEN }} SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }} SM_PUBLISHER_NAME: ${{ secrets.SM_PUBLISHER_NAME }} SM_API_KEY: ${{ secrets.SM_API_KEY }} SM_HOST: ${{ vars.SM_HOST }} SM_CODE_SIGNING_CERT_SHA1_HASH: ${{ vars.SM_CODE_SIGNING_CERT_SHA1_HASH }} SM_KEYPAIR_ALIAS: ${{ vars.SM_KEYPAIR_ALIAS }} # DEBUG: electron-builder,electron-builder:* - name: Build packages without signing run: node scripts/build-windows.mjs if: "! (github.event_name == 'push' && (startsWith(github.ref, 'refs/tags')))" env: ARCH: ${{matrix.arch}} - name: Upload symbols run: | npm install @sentry/cli node scripts/sentry-upload.mjs env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} - name: Package artifacts run: | mkdir artifact-setup mv dist/*-setup-*.exe artifact-setup/ mkdir artifact-portable mv dist/*-portable-*.zip artifact-portable/ - uses: actions/upload-artifact@master name: Upload installer with: name: Windows installer (${{matrix.arch}}) path: artifact-setup - uses: actions/upload-artifact@master name: Upload portable build with: name: Windows portable build (${{matrix.arch}}) path: artifact-portable ================================================ FILE: .github/workflows/codeql-analysis.yml ================================================ # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. # # ******** NOTE ******** # We have attempted to detect the languages in your repository. Please check # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # name: "CodeQL" on: push: branches: [ master ] pull_request: # The branches below must be a subset of the branches above branches: [ master ] schedule: - cron: '26 7 * * 4' jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'javascript' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support steps: - name: Checkout repository uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v2 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 ================================================ FILE: .github/workflows/docs.yml ================================================ name: Docs on: push jobs: build: runs-on: ubuntu-latest if: ${{ github.actor != 'dependabot[bot]' }} steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Installing Node uses: actions/setup-node@v4.4.0 with: node-version: 22 - name: Build run: | sudo apt update && sudo apt install libfontconfig1-dev yarn cache clean cd app yarn cd .. rm app/node_modules/.yarn-integrity yarn yarn run build:typings yarn run docs env: DOCS_PRIVATE_KEY: ${{ secrets.DOCS_PRIVATE_KEY }} - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}' firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TABBY_DOCS }}' channelId: live projectId: tabby-docs ================================================ FILE: .github/workflows/release.yml ================================================ --- name: "tagged-release" on: push: tags: - "v*" jobs: tagged-release: name: "Tagged Release" runs-on: "ubuntu-latest" steps: - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" prerelease: false draft: true ================================================ FILE: .gitignore ================================================ app/node_modules app/assets/webpack node_modules build/files.wxs dist */dist */typings *.tsbuildinfo *.xcworkspacedata *.xcuserstate *.wixpdb .DS_Store .DS_Store? coverage .nyc_output npm-debug.log builtin-plugins package-lock.json yarn-error.log docs/api .travis.ssh.key *.code-workspace .idea/ .electron-symbols sentry.properties sentry-symbols.js *.psd crowdin.yml .crowdin.env ================================================ FILE: .mergify.yml ================================================ pull_request_rules: - name: automatic merge on CI success and review conditions: - "status-success=Windows Build / Build" - "status-success=macOS Build / Build" - "status-success=Linux Build / Build" - "status-success=continuous-integration/appveyor/pr" - "#approved-reviews-by>=1" - "#changes-requested-reviews-by=0" - base=master actions: merge: method: merge strict: true ================================================ FILE: .pug-lintrc.js ================================================ module.export = { } ================================================ FILE: .vscode/launch.json ================================================ { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Electron: Main", "protocol": "inspector", "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", "env": { "TABBY_DEV": "1" }, "runtimeArgs": [ "--remote-debugging-port=9223", "app" ], "windows": { "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" } }, { "name": "Electron: Renderer", "type": "pwa-chrome", "request": "attach", "port": 9223, "webRoot": "${workspaceFolder}", "timeout": 30000 } ], "compounds": [ { "name": "Electron: All", "configurations": [ "Electron: Main", "Electron: Renderer" ] } ] } ================================================ FILE: .well-known/funding-manifest-urls ================================================ https://null.page/funding.json ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at e@ajenti.org. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ ================================================ FILE: HACKING.md ================================================ # Some background Tabby is an Electron app, with the frontend written in Typescript with the help of Angular framework. It's built using Webpack. # Getting started First of all, clone this repository. # Install Dependencies - [Node.js](https://nodejs.org/en/download/) **version 15 or newer* - [Yarn](https://yarnpkg.com/) First, from within the `tabby` directory install the dependencies via yarn: ``` # macOS & Windows: yarn ``` ``` # Linux (Debian/Ubuntu here as an example) sudo apt install libfontconfig-dev libsecret-1-dev libarchive-tools libnss3 libatk1.0-0 libatk-bridge2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libgbm1 cmake yarn ``` _⚠️Note: If you forked this repository, you may need to pull down the tags from this repository before installing node modules. `git pull --tags upstream master`_ Build Tabby: ``` yarn run build ``` Start Tabby ``` yarn start ``` # Building an installer To build an installer, first complete a "normal" build as described above and then run: ``` node scripts/prepackage-plugins.mjs node scripts/build-windows.mjs # or node scripts/build-linux.mjs # or node scripts/build-macos.mjs ``` The artifacts will be produced in the `dist` folder. # Project layout ``` tabby ├─ app # Electron app, just the bare essentials | ├─ src # Electron renderer code | └─ main.js # Electron main entry point ├─ build ├─ clink # Clink distribution, for Windows ├─ scripts # Maintenance scripts ├─ tabby-community-color-schemes # Plugin that provides color schemes ├─ tabby-core # Plugin that provides base UI and tab management ├─ tabby-electron # Plugin that provides Electron-specific functions ├─ tabby-local # Plugin that provides local shells and profiles ├─ tabby-plugin-manager # Plugin that installs other plugins ├─ tabby-settings # Plugin that provides the settings tab ├─ tabby-terminal # Plugin that provides terminal tabs └─ tabby-web # Plugin that provides web-specific functions ``` # Plugin layout ``` tabby-pluginname ├─ src # Typescript code | ├─ components # Angular components | | ├─ foo.component.ts # Code | | ├─ foo.component.scss # Styles | | └─ foo.component.pug # Template | ├─ services # Angular services | | └─ foo.service.ts | ├─ api.ts # Publicly exported API | └─ index.ts # Module entry point ├─ package.json ├─ tsconfig.json └─ webpack.config.js ``` # Plugins The app will load all plugins from the source checkout in the dev mode, from the user's plugins directory at all times (click `Open Plugins Directory` under `Settings` > `Plugins`) and from the directory specified by the `TABBY_PLUGINS` environment var. Only modules whose `package.json` file contains a `tabby-plugin` keyword will be loaded. If you're currently in your plugin's directory, start Tabby as `TABBY_PLUGINS=$(pwd) tabby --debug` A plugin should only provide a default export, which should be a `NgModule` class (or a `NgModuleWithDependencies` where applicable). This module will be injected as a dependency to the app's root module. ```javascript import { NgModule } from '@angular/core' @NgModule() export default class MyModule { constructor () { console.log('Angular engaged, cap\'n.') } } ``` Plugins provide functionality by exporting singular or multi providers: ```javascript import { NgModule, Injectable } from '@angular/core' import { ToolbarButtonProvider, ToolbarButton } from 'tabby-core' @Injectable() export class MyButtonProvider extends ToolbarButtonProvider { provide (): ToolbarButton[] { return [{ icon: 'star', title: 'Foobar', weight: 10, click: () => { alert('Woohoo!') } }] } } @NgModule({ providers: [ { provide: ToolbarButtonProvider, useClass: MyButtonProvider, multi: true }, ], }) export default class MyModule { } ``` See `tabby-core/src/api.ts`, `tabby-settings/src/api.ts`, `tabby-local/src/api.ts` and `tabby-terminal/src/api.ts` for the available extension points. Also check out [the example plugin](https://github.com/Eugeny/tabby-clippy). Publish your plugin on NPM with a `tabby-plugin` keyword to make it appear in the Plugin Manager. ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 Tabby Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.de-DE.md ================================================ [](https://tabby.sh)
---- ### Downloads: * [Neueste Version](https://github.com/Eugeny/tabby/releases/latest) * [Repositories](https://packagecloud.io/eugeny/tabby): [Debian/Ubuntu-basiert](https://packagecloud.io/eugeny/tabby/install#bash-deb), [RPM-basiert](https://packagecloud.io/eugeny/tabby/install#bash-rpm) * [Neueste nightly Version](https://nightly.link/Eugeny/tabby/workflows/build/master)Diese README ist auch verfügbar in: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh) (ehemals **Terminus**) ist ein äußerst konfigurierbarer Terminalemulator, SSH- und serieller Client für Windows, macOS und Linux * Integrierter SSH- und Telnet-Client und Verbindungsmanager * Integriertes serielles Terminal * Theming und Farbschemata * Vollständig konfigurierbare Tastenkombinationen und Multi-Akkord-Tastenkombinationen * Geteilte Fenster * Merkt sich deine Tabs * Unterstützung für PowerShell (und PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder und CMD * Direkte Dateiübertragung von/zu SSH-Sitzungen über Zmodem * Vollständige Unicode-Unterstützung, einschließlich Zeichen mit doppelter Breite * Kein Abbruch bei schnell ablaufenden Ausgaben * Richtiges Shell-Erlebnis unter Windows, einschließlich Tabulator-Vervollständigung (über Clink) * Integrierter verschlüsselter Container für SSH-Secrets und Konfiguration * SSH-, SFTP- und Telnet-Client verfügbar als [Web-App](https://tabby.sh/app) (auch [selbstgehostet](https://github.com/Eugeny/tabby-web)). # Inhaltsverzeichnis - [Was Tabby ist und was nicht](#what-tabby-is-and-isnt) - [Terminal-Funktionen](#terminal-features) - [SSH Client](#ssh-client) - [Serielles Terminal](#serial-terminal) - [Portabel](#portable) - [Plugins](#plugins) - [Themen](#themes) - [Beitragen](#contributing) # Was Tabby ist und was nicht **Tabby ist** eine Alternative zu Windows Standard-Terminal (conhost), PowerShell ISE, PuTTY, macOS Terminal.app und iTerm **Tabby ist weder** eine neue Shell noch ein MinGW- oder Cygwin-Ersatz. Sie ist auch nicht gerade sparsam - wenn die RAM-Nutzung von Bedeutung ist, solltest Du [Conemu](https://conemu.github.io) oder [Alacritty](https://github.com/jwilm/alacritty) in Betracht ziehen. # Terminal-Funktionen  * Ein VT220-Terminal + verschiedene Erweiterungen * Mehrere verschachtelte, geteilte Fenster * Tabs auf jeder Seite des Fensters * Optional andockbares Fenster mit einem globalen Spawn-Hotkey ("Quake-Konsole") * Fortschrittserkennung * Benachrichtigung bei Prozessabschluss * Einfügen in Klammern, mehrzeilige Einfügewarnungen * Schriftart-Ligaturen * Benutzerdefinierte Shell-Profile * Optionales RMB-Einfügen und Kopieren bei Auswahl (PuTTY-Stil) # SSH Client  * SSH2-Client mit einem Verbindungsmanager * X11 und Portweiterleitung * Automatisches Jump-Host-Management * Agent-Weiterleitung (inkl. Pageant und Windows-eigenem OpenSSH-Agent) * Anmeldeskripte # Serielles Terminal * Gespeicherte Verbindungen * Unterstützung von Readline-Eingaben * Optionale hexadezimale Byte-für-Byte-Eingabe und Hexdump-Ausgabe * Newline-Konvertierung * Automatische Wiederverbindung # Portabel Tabby läuft als portable Anwendung unter Windows, wenn Sie einen `data`-Ordner am selben Ort erstellen, an dem sich auch `Tabby.exe` befindet. # Plugins Plugins und Themen können direkt aus der Ansicht "Einstellungen" in Tabby installiert werden. * [docker](https://github.com/Eugeny/tabby-docker) - Verbindung zu Docker-Containern * [title-control](https://github.com/kbjr/terminus-title-control) - ermöglicht die Änderung des Titels der Terminal-Tabs durch Angabe eines Präfixes, Suffixes und/oder zu entfernender Strings * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - schnelles Senden von Befehlen an eine oder alle Terminal-Tabs * [save-output](https://github.com/Eugeny/tabby-save-output) - speichert Terminalausgaben in einer Datei * [sync-config](https://github.com/starxg/terminus-sync-config) - synchronisiert die Konfiguration mit Gist oder Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - ein Beispiel-Plugin, das einen die ganze Zeit nervt * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - ermöglicht das Erstellen eigener Workspace-Profile auf Basis der angegebenen Konfiguration * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - öffnet den Standard-Systembrowser mit einem Text, der aus dem Tabby Tab ausgewählt wurde * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - Öffnet ein SFTP-Tab für SSH-Verbindungen ähnlich wie SecureCRT * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - In-App-Web-Authentifizierungspopups (Hauptsächlich für die in-Browser-Authentifizierung von Warpgate entwickelt) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Leistungsstarke Model Context Protocol Server-Integration für Tabby, die sich nahtlos mit KI-Assistenten über MCP-Clients wie Cursor und Windsurf verbindet und Ihren Terminal-Workflow mit intelligenten KI-Funktionen verbessert. # Themen * [hype](https://github.com/Eugeny/tabby-theme-hype) - ein von Hyper inspiriertes Thema * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - das entspannte Thema für Tabby * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # Sponsoren [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) bietet kostenloses Debian/RPM-Repository-Hosting an # Beitragen Pull Requests und Plugins sind willkommen! Siehe [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) und [API docs](https://docs.tabby.sh/) für Informationen über den Aufbau des Projekts und ein sehr kurzes Tutorial zur Plugin-Entwicklung. --- Dank geht an diese wunderbaren Menschen ([emoji key](https://allcontributors.org/docs/en/emoji-key)):Este fichero README está disponible en: :gb: English · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh) (anteriormente **Terminus**) es un emulador de terminal, SSH y cliente serie altamente configurable parar Windows, macOS y Linux * Cliente y gestor de conexiones SSH y Telnet integrados * Terminal serie integrado * Esquemas de colores y temas * Totalmente configurable con atajos y atajos múltiples * Paneles divididos * Recuerda tus pestañas * Soporte para PowerShell (y PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder y CMD * Transferencia de ficheros directa desde/a sesiones SSH via Zmodem * Soporte completo Unicode incluyendo caracteres dobles * No se bloquea con las salidas rápidas * Experiencia adecuada del shell en Windows, incluyendo la finalización de pestañas (via Clink) * Contenedor encriptado integrado para los secretos SSH y la configuración * Cliente SSH, SFTP y Telnet disponible como [aplicación web](https://tabby.sh/app) (incluso [auto-alojada](https://github.com/Eugeny/tabby-web)). # Contenidos - [¿Qué es Tabby y que no es?](#what-tabby-is-and-isnt) - [Características de Terminal](#terminal-features) - [Cliente SSH](#ssh-client) - [Terminal Serie](#serial-terminal) - [Portable](#portable) - [Plugins](#plugins) - [Temas](#themes) - [Contribuciones](#contributing) # ¿Qué es Tabby y que no es? * **Tabby es** una alternativa al terminal estándar de Windows (cohost), PowerShell ISE, PuTTY, macOS Terminal.app e iTerm * **Tabby no es** un nuevo shell o un sustituto de MinGW o de Cygwin. Tampo es ligero - si el uso de RAM es importante, considera [Conemu](https://conemu.github.io) o [Alacritty](https://github.com/jwilm/alacritty) # Características de Terminal  * Un terminal VT220 + varias extensiones * Múltiples paneles divididos anidados * Pestañas en cualquier lado de la ventana * Ventana acoplable opcional con una tecla de acceso directo global ("consola de Quake") * Detección del progreso * Notificación de la finalización del proceso * Pegar entre corchetes, avisos de pegar multilínea * Tipos de letra ligados * Perfiles personalizados en el shell * Opción de pegar y copiar al seleccionar RMB (estilo PuTTY) # Cliente SSH  * Cliente SSH2 con gestor de conexiones * X11 y reenvío de puertos * Gestión de host de salto automático * Reenvío de agentes (incluido el agente de Pageant y el agente OpenSSH nativo de Windows) * Scripts de inicio de sesión # Terminal Serie * Conexiones guardadas * Soporte de entrada de línea de lectura * Entrada hexagonal byte a byte y salida hexdump opcionales * Conversión de la nueva línea * Reconexión automática # Portable Tabby se ejecutará como una aplicación portátil en Windows, si crea una carpeta `data` en la misma ubicación donde se encuentra `Tabby.exe`. # Plugins Los plugins y los temas se pueden instalar directamente desde la vista de Configuración dentro de Tabby. * [docker](https://github.com/Eugeny/tabby-docker) - conectarse a los contenedores Docker * [title-control](https://github.com/kbjr/terminus-title-control) - permite modificar el título de las pestañas de los terminales proporcionando un prefijo, un sufijo y/o cadenas a eliminar * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - enviar rápidamente comandos a una o a todas las pestañas del terminal * [save-output](https://github.com/Eugeny/tabby-save-output) - registrar la salida del terminal en un archivo * [sync-config](https://github.com/starxg/terminus-sync-config) - sincronizar la configuración con Gist o Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - un ejemplo de plugin que te molesta todo el tiempo * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - permite crear perfiles de espacio de trabajo personalizados basados en la configuración dada * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - abre el navegador del sistema por defecto con un texto seleccionado en la pestaña de Tabby's * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - abre una pestaña sftp para la conexión ssh como SecureCRT * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - Ventanas emergentes de autenticación web dentro de la app (Construidas principalmente para la autenticación en el navegador de warpgate) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Potente integración del servidor de Protocolo de Contexto de Modelo para Tabby que se conecta sin problemas con asistentes de IA a través de clientes MCP como Cursor y Windsurf, mejorando tu flujo de trabajo en terminal con capacidades inteligentes de IA. # Temas * [hype](https://github.com/Eugeny/tabby-theme-hype) - Tema inspirado en Hyper * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - El tema relajado para Tabby * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # Patrocinadores [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) ha proporcionado alojamiento gratuito de repositorios Debian/RPM [](https://keygen.sh/?via=eugene) [**keygen**](https://keygen.sh/?via=eugene) ha proporcionado alojamiento gratuito para la liberación y la actualización automática # Contribuciones ¡Solicitudes de Pull y plugins son bienvenidas! Mira [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) y [documentación API](https://docs.tabby.sh/) para obtener información sobre el diseño del proyecto y un breve tutorial de desarrollo de plugins. --- Gracias a estas maravillosas personas ([emoji key](https://allcontributors.org/docs/en/emoji-key)):This README is also available in: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh) (sebelumnya **Terminus**) adalah emulator terminal, SSH, dan klien serial yang sangat dapat dikonfigurasi untuk Windows, macOS, dan Linux * Integrasi SSH dan klien Telnet dan Koneksi Manager * Integrasi terminal serial * Tema dan skema warna * Pintasan yang dapat dikonfigurasi sepenuhnya dan pintasan multi-chord * Panel yang bisa dipisahkan * Mengingat tab anda * Mendukung PowerShell (dan PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder dan CMD * File transfer secara langsung dari/ke sesi SSH melalui Zmodem * Mendukung Unicode termasuk karakter double-width * Tidak tersendat dengan output yang tampil dengan cepat * Pengalaman shell yang tepat di Windows termasuk penyelesaian tab (melalui Clink) * Terintegrasi dengan wadah terenkripsi untuk rahasia dan konfigurasi SSH * SSH, SFTP dan klien Telnet tersedia sebagai [aplikasi web](https://tabby.sh/app) (dan juga [self-hosted](https://github.com/Eugeny/tabby-web)). # Contents - [Apa itu Tabby dan bukan Tabby](#what-tabby-is-and-isnt) - [Fitur Terminal](#terminal-features) - [SSH Client](#ssh-client) - [Serial Terminal](#serial-terminal) - [Portabel](#portable) - [Plugins](#plugins) - [Tema](#themes) - [Kontribusi](#contributing) # Apa itu Tabby dan bukan Tabby * **Tabby adalah** sebuah alternatif untuk terminal standar Windows' (conhost), PowerShell ISE, PuTTY, macOS Terminal.app dan iTerm * **Tabby bukan** shell yang baru atau pengganti MinGW atau Cygwin. Dan bukan aplikasi ringan - jika mengutamakan penggunaan RAM, mungkin boleh mencoba [Conemu](https://conemu.github.io) atau [Alacritty](https://github.com/jwilm/alacritty) # Fitur terminal  * Terminal VT220 + berbagai macam ekstensi * Beberapa pembagian panel * Tab di sisi mana pun dari jendela * Jendela dockable opsional dengan hotkey spawn global ("Quake console") * Deteksi Progres * Notifikasi saat proses telah selesai * Tempel tanda kurung, peringatan tempel multiline * Pengikat font * Kustom profil shell * Opsional tempel RMB dan copy-on select (PuTTY style) # Klien SSH  * Klien SSH2 dengan manajemen koneksi * X11 dan port forwarding * Otomatis berpindah host management * Agent forwarding (termasuk Pageant dan Windows native OpenSSH Agent) * Login scripts # Serial Terminal * Koneksi yang disimpan * Support Readline input * Opsional hex byte-by-byte input dan hexdump output * Konversi Newline * Rekoneksi secara otomatis # Portabel Tabby tetap bisa berjalan sebagai aplikasi portabel di Windows, jika anda membuat folder `data` di tempat yang sama dengan `Tabby.exe`. # Plugins Tema dan Plugin bisa langsung di install dari Pengaturan di dalam Tabby. * [docker](https://github.com/Eugeny/tabby-docker) - untuk koneksi ke Docker containers * [title-control](https://github.com/kbjr/terminus-title-control) - memperbolehkan untuk mengganti judul di tab terminal dengan menyediakan prefix, suffix, dan/atau strings untuk di buang * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - kirimkan perintah ke satu atau semua tab terminal dengan cepat * [save-output](https://github.com/Eugeny/tabby-save-output) - merekam output terminal ke suatu file * [sync-config](https://github.com/starxg/terminus-sync-config) - sinkronisasi konfigurasi ke Gist atau Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - suatu contoh plugin yang akan mengganggu anda setiap saat * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - memperbolehkan membuat kustom profil workspace dari konfigurasi yang diberikan * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - membuka browser default dengan text yang dipilih dari Tab Tabby * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - membuka tab sftp untuk koneksi ssh seperti SecureCRT * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - Pop-up otentikasi web di dalam aplikasi (Dibangun terutama untuk otentikasi in-browser warpgate) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Integrasi server Model Context Protocol yang kuat untuk Tabby yang terhubung secara mulus dengan asisten AI melalui klien MCP seperti Cursor dan Windsurf, meningkatkan alur kerja terminal Anda dengan kemampuan AI yang cerdas. # Tema * [hype](https://github.com/Eugeny/tabby-theme-hype) - inspirasi dari tema Hyper * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - Tabby, tapi lebih santuy * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # Sponsors [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) telah menyediakan hosting gratis untuk Debian/RPM Repisitory # Kontribusi Pull requests dan plugins dipersilahkan! Lihat [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) dan [API docs](https://docs.tabby.sh/) untuk informasi lebih lajut tentang project ini, dan tutorial singkat untuk plugin. --- Terima kasih kepada mereka yang telah membantu ([emoji key](https://allcontributors.org/docs/en/emoji-key)):Questo README è disponibile anche in: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski ---- [**Tabby**](https://tabby.sh) (precedentemente **Terminus**) è un emulatore di terminale, SSH e client seriale altamente configurabile per Windows, macOS e Linux * Client SSH e Telnet integrato con gestore delle connessioni * Terminale seriale integrato * Temi e combinazioni di colori * Scorciatoie completamente configurabili e scorciatoie multi-tasto * Divisibile in pannelli * Ricorda le schede aperte * Supporto PowerShell (e PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder e CMD * Trasferimento file diretto da/a sessioni SSH tramite Zmodem * Pieno supporto Unicode inclusi caratteri a doppia larghezza * Non si blocca su output a flusso rapido * Proper shell experience on Windows including tab completion (via Clink) * Integrated encrypted container for SSH secrets and configuration * Esperienza shell studiaat per Windows incluso il completamento delle schede (tramite Clink) * Contenitore crittografato integrato per chiavi SSH e file di configurazione * Client SSH, SFTP e Telnet disponibile come [web app](https://tabby.sh/app) (anche [self-hosted](https://github.com/Eugeny/tabby-web)). # Contenuti - [Cosa è e cosa non è Tabby](#cosa-è-e-cosa-non-è-tabby) - [Caratteristiche del Terminale](#caratteristiche-del-terminale) - [Client SSH](#client-ssh) - [Terminale Seriale](#terminale-seriale) - [Portabilità](#portabilità) - [Plugin](#plugin) - [Temi](#temi) - [Partecipazione](#partecipazione) # Cosa è e cosa non è Tabby * **Tabby è** un'alternativa al terminale standard di Windows (conhost), PowerShell ISE, PuTTY, macOS Terminal.app e iTerm * **Tabby non è** una nuova shell o un'alternativa a MinGW o Cygwin. Non è nemmeno leggero: se l'utilizzo della RAM è importante, considera [Conemu](https://conemu.github.io) o [Alacritty](https://github.com/jwilm/alacritty) # Caratteristiche del Terminale  * Un terminale VT220 + vari estensioni * Suddivisione in pannelli * Schede su qualsiasi lato della finestra * Finestra agganciabile opzionale con un tasto di scelta rapida ("Quake console") * Rilevamento del progresso * Notifica al completamento del processo * Incolla tra parentesi e avvisi di incollaggio multilinea * Legature dei caratteri * Profili shell personalizzati * Incolla RMB e copia su selezione opzionale (in stile PuTTY) # Client SSH  * Client SSH2 con un gestore di connessioni * X11 e port forwarding * Gestione automatica dell'host di salto * Inoltro dell'agente (incluso Pageant e l'agente OpenSSH nativo di Windows) * Script di accesso # Terminale Seriale * Connessioni salvate * Supporto per l'input Readline * Input esadecimale byte per byte opzionale e output hexdump * Conversione nuova riga * Riconnessione automatica # Portabilità Tabby può essere eseguito come app portatile su Windows, se crei una cartella `data` nella stessa posizione in cui si trova `Tabby.exe`. # Plugin I plugin e i temi possono essere installati direttamente dalla vista Impostazioni all'interno di Tabby. * [docker](https://github.com/Eugeny/tabby-docker) - connessione ai container Docker * [title-control](https://github.com/kbjr/terminus-title-control) - consente di modificare il titolo delle schede del terminale fornendo un prefisso, un suffisso e/o stringhe da rimuovere * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - invia rapidamente comandi a una o tutte le schede del terminale * [save-output](https://github.com/Eugeny/tabby-save-output) - registra l'output del terminale in un file * [sync-config](https://github.com/starxg/terminus-sync-config) - sincronizza la configurazione con Gist o Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - un esempio di plugin che ti infastidisce tutto il tempo * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - consente di creare profili di spazio di lavoro personalizzati basati sulla configurazione fornita * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - apre il browser di sistema predefinito con un testo selezionato dalla scheda di Tabby * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - apre una scheda SFTP per la connessione SSH come SecureCRT * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - Popup di autenticazione web in-app (costruito principalmente per l'autenticazione in-browser di Warpgate) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Potente integrazione del server Model Context Protocol per Tabby che si connette perfettamente con assistenti AI attraverso client MCP come Cursor e Windsurf, migliorando il tuo flusso di lavoro del terminale con capacità AI intelligenti. # Temi * [hype](https://github.com/Eugeny/tabby-theme-hype) - a Hyper inspired theme * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - the Relaxed theme for Tabby * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # Sponsor [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) ha fornito gratuitamente un hosting per i repository Debian/RPM # Partecipazione Richieste pull e plugin sono i benvenuti! Vedi [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) e la [documentazione API](https://docs.tabby.sh/) per informazioni su come è strutturato il progetto e un brevissimo tutorial sullo sviluppo dei plugin. --- Grazie a queste persone meravigliose ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
このREADMEは次の言語でもご覧いただけます: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh)(旧**Terminus**)は、Windows、macOS、Linux向けの高度なカスタマイズに対応した端末エミュレータ、SSH、シリアルコンソールです * SSH、Telnetクライアントと接続マネージャーの統合 * シリアルコンソールの統合 * テーマと配色のカスタマイズ * 自由なショートカットのカスタマイズと複数キー入力にも対応 * ペイン分割に対応 * タブの保存機能 * PowerShell(または PS Core)やWSL、Git-Bash、Cygwin、MSYS2、Cmder、CMDに対応 * Zmodemを介したSSHセッションへの直接ファイル転送 * 全角文字を含むUnicodeの完全対応 * 大量の出力にも止まることはありません * タブキーによる補完機能にも対応したWindows上での快適なシェル (Clink使用) * SSHの機密性の高い情報と設定を保存する暗号化コンテナの搭載 * SSH、SFTP、Telnetクライアントが[Webアプリ](https://tabby.sh/app)としても利用できます ([セルフホスティング](https://github.com/Eugeny/tabby-web)も可能) # コンテンツ - [Tabbyとは](#tabbyとは) - [ターミナル機能](#ターミナル機能) - [SSHクライアント](#sshクライアント) - [シリアルコンソール](#シリアルコンソール) - [ポータブル機能](#ポータブル機能) - [プラグイン](#プラグイン) - [テーマ](#テーマ) - [コントリビュート](#コントリビュート) # Tabbyとは * **Tabbyは**Windows 標準のターミナル(conhost)、PowerShell ISE、PuTTY、macOSのTerminal.appおよびiTermの代替となるアプリケーションです。 * **Tabby**は新しいシェル**でもなければ**、MinGWやCygwinの置き換え**でもありません**。また、軽量**でもありません**。RAMの使用量を重視するのではあれば、[Conemu](https://conemu.github.io)や[Alacritty](https://github.com/jwilm/alacritty)の利用をお勧めします。 # ターミナル機能  * VT220ターミナル+各種拡張機能 * 複数ネストされたペイン分割に対応 * ウィンドウ内に自由に配置可能なタブ * グローバルホットキーで呼び出せるドックウィンドウ機能("Quakeコンソール") * 進行状況の検出 * プロセス完了時の通知 * ブラケットペーストや複数行のペーストの警告機能 * 合字フォントの対応 * シェルプロファイルの自由なカスタマイズ * RMBペーストと選択時の自動コピー機能(PuTTYスタイル)の対応 # SSHクライアント  * SSH2クライアントと接続マネージャー * X11とポートフォワーディング * 自動ジャンプサーバー管理 * エージェント転送(PageantとWindows標準OpenSSHエージェントを含む) * ログインスクリプト # シリアルコンソール * 接続の保存機能 * 行単位入力の対応 * 16進バイト入力および16進ダンプ出力の対応 * 改行コードの変換 * 自動再接続 # ポータブル機能 Windows上では、`Tabby.exe`がある場所と同じ場所に`data`フォルダを作成すれば、ポータブルアプリとして実行することができます。 # プラグイン プラグインやテーマは、Tabby内の設定画面から直接インストールすることができます。 * [docker](https://github.com/Eugeny/tabby-docker) - Dockerコンテナに接続することができます * [title-control](https://github.com/kbjr/terminus-title-control) - タブ名の前後に文字を入れたり指定した文字の削除をすることができます * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - 一つもしくは複数のタブに手軽にコマンド送信することができます * [save-output](https://github.com/Eugeny/tabby-save-output) - ターミナルの出力をファイルに保存することができます * [sync-config](https://github.com/starxg/terminus-sync-config) - GistやGiteeで設定ファイルを同期することができます * [clippy](https://github.com/Eugeny/tabby-clippy) - プラグインの作例として、いつも厄介なあいつが出てくるプラグイン * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - 指定された設定からカスタマイズされたワークスペースを作成することができます * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - Tabby内の端末で選択したテキストを既定ブラウザで開くことができます。 * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - SecureCRTのようにSSH接続のSFTPタブを開く * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - アプリ内ウェブ認証ポップアップ(主にwarpgateのブラウザ認証用に構築) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - TabbyのためのパワフルなModel Context Protocolサーバー統合機能で、CursorやWindsurfなどのMCPクライアントを通じてAIアシスタントとシームレスに接続し、インテリジェントなAI機能によってターミナルワークフローを強化します。 # テーマ * [hype](https://github.com/Eugeny/tabby-theme-hype) - Hyperをイメージしたテーマ * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - Tabby向けのRelaxedテーマ * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # スポンサー [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io)は、Debian/RPMリポジトリのホスティングを無償で提供しています [](https://keygen.sh/?via=eugene) [**keygen**](https://keygen.sh/?via=eugene)は、自動リリース機能および自動更新機能のホスティングを無償で提供しています # コントリビュート プルリクエストやプラグインは大歓迎です! プロジェクトの構成や、非常に簡単なプラグイン開発のチュートリアルについては、[HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md)および、[API docs](https://docs.tabby.sh/)を参照してください。 --- 以下の素晴らしい方々([emoji key](https://allcontributors.org/docs/en/emoji-key))に感謝いたします:This README is also available in: :gb: English · :es: Spanish · :ru: Русский · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- **Tabby** (구 **Terminus**)는 Windows, macOS 및 Linux용으로 뛰어난 구성의 터미널 에뮬레이터, SSH 및 시리얼 클라이언트입니다. * 통합 SSH 클라이언트 및 연결 관리자 * 통합 시리얼 터미널 * 테마 및 색 구성표 * 전체 구성이 가능한 단축키 및 다중 코드 단축키 * 창 분할 * 이전 탭 사용을 기억 * PowerShell (및 PS Core), WSL, Git-Bash, Cygwin, Cmder 및 CMD 지원 * Zmodem을 통한 SSH 세션 간의 직접 파일 전송 * 2바이트 문자를 포함한 전체 유니코드 지원 * 빠르게 출력되는 것에 대해 휩쓸리지 않음 * 탭 완성을 포함한 Windows에서의 적절한 셸 환경 (Clink을 통해) * SSH 시크릿 및 구성을 위한 통합 암호화 컨테이너 # 목차 - [Tabby는 무엇인가](#tabby는-무엇인가) - [터미널 기능](#터미널-기능) - [SSH 클라이언트](#ssh-클라이언트) - [시리얼 터미널](#시리얼-터미널) - [포터블](#포터블) - [플러그인](#플러그인) - [테마](#테마) - [기여](#기여) # Tabby는 무엇인가 * **Tabby는** Windows의 표준 터미널 (conhost), PowerShell ISE, PuTTY 또는 iTerm의 대안 프로그램입니다. * **Tabby는** 새로운 셸이나 MinGW 또는 Cygwin을 대체하지 **않습니다**. 가볍지도 않습니다. - RAM 사용량이 중요한 경우, [Conemu](https://conemu.github.io) 또는 [Alacritty](https://github.com/jwilm/alacritty)를 고려하십시오. # 터미널 기능  * A VT220 터미널 + 다양한 확장 * 여러 개의 분할 창 중첩 * 모든 측면에 탭이 위치함 * 전역 스폰 단축키가 있는 도킹 가능한 윈도우 ("Quake console") * 진행률 탐지 * 프로세스 완료 시 알림 * 괄호 붙여넣기, 여러 줄 붙여넣기 경고 * 폰트 합자(ligatures) * 커스텀 셸 프로필 * RMB 붙여넣기 및 복사 선택 옵션 (PuTTY 스타일) # SSH 클라이언트  * 연결 관리자가 있는 SSH2 클라이언트 * X11 및 포트 포워딩 * 자동 jump 호스트 관리 * 에이전트 전달 (Pageant 및 Windows 기본 OpenSSH 에이전트 포함) * 로그인 스크립트 # 시리얼 터미널 * 연결 저장 * Readline 입력 지원 * 선택적 hex byte별 입력 및 hexdump 출력 * 개행 변환 * 자동 재접속 # 포터블 `Tabby.exe`가 있는 동일한 위치에 `data` 폴더를 생성하면 Windows에서 Tabby가 포터블 앱으로 실행됩니다. # 플러그인 플러그인과 테마는 Tabby 내부의 설정에서 직접 설치할 수 있습니다. * [clickable-links](https://github.com/Eugeny/tabby-clickable-links) - 터미널의 경로 및 URL을 클릭 가능하게 * [docker](https://github.com/Eugeny/tabby-docker) - Docker 컨테이너에 연결 * [title-control](https://github.com/kbjr/terminus-title-control) - 접두사, 접미사 및/또는 문자열 제거를 제공하여 터미널 탭의 제목을 수정 * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - 하나 또는 모든 터미널 탭에 신속한 명령 전송 * [save-output](https://github.com/Eugeny/tabby-save-output) - 터미널 출력을 파일에 기록 * [sync-config](https://github.com/starxg/terminus-sync-config) - 구성을 Gist 또는 Gitee에 동기화 * [clippy](https://github.com/Eugeny/tabby-clippy) - 항상 당신을 귀찮게 하는 예제 플러그인 * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - 주어진 구성을 기반으로 사용자 정의 작업 공간 프로필을 생성할 수 있습니다 * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - Tabby의 탭에서 선택한 텍스트로 기본 시스템 브라우저를 엽니다 * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - SecureCRT와 유사하게 SSH 연결에 대한 SFTP 탭을 엽니다. * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - 앱 내 웹 인증 팝업 (주로 warpgate 브라우저 인증을 위해 구축) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Cursor 및 Windsurf와 같은 MCP 클라이언트를 통해 AI 어시스턴트와 원활하게 연결되는 Tabby용 강력한 모델 컨텍스트 프로토콜 서버 통합으로, 지능형 AI 기능으로 터미널 워크플로우를 향상시킵니다. # 테마 * [hype](https://github.com/Eugeny/tabby-theme-hype) - Hyper에서 영감을 받은 테마 * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - Tabby를 위해 여유로움을 제공하는 테마 * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # 스폰서 [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io)가 무료 Debian/RPM 저장소 호스팅을 제공하였습니다. # 기여 Pull requests and plugins are welcome! 프로젝트 배치 방법에 대한 자세한 내용과 매우 간단한 플러그인 개발 튜토리얼은 [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) 및 [API docs](https://docs.tabby.sh/)를 참조하십시오. --- 여기 있는 멋진 사람들에게 진심으로 감사합니다. ([emoji key](https://allcontributors.org/docs/en/emoji-key)):This README is also available in: :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh) (formerly **Terminus**) is a highly configurable terminal emulator, SSH and serial client for Windows 10, macOS and Linux * Integrated SSH and Telnet client and connection manager * Integrated serial terminal * Theming and color schemes * Fully configurable shortcuts and multi-chord shortcuts * Split panes * Remembers your tabs * PowerShell (and PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder and CMD support * Direct file transfer from/to SSH sessions via Zmodem * Full Unicode support including double-width characters * Doesn't choke on fast-flowing outputs * Proper shell experience on Windows including tab completion (via Clink) * Integrated encrypted container for SSH secrets and configuration * SSH, SFTP and Telnet client available as a [web app](https://tabby.sh/app) (also [self-hosted](https://github.com/Eugeny/tabby-web)). # Contents - [What Tabby is and isn't](#what-tabby-is-and-isnt) - [Terminal features](#terminal-features) - [SSH Client](#ssh-client) - [Serial Terminal](#serial-terminal) - [Portable](#portable) - [Plugins](#plugins) - [Themes](#themes) - [Contributing](#contributing) # What Tabby is and isn't * **Tabby is** an alternative to Windows' standard terminal (conhost), PowerShell ISE, PuTTY, macOS Terminal.app and iTerm * **Tabby is not** a new shell or a MinGW or Cygwin replacement. Neither is it lightweight - if RAM usage is of importance, consider [Conemu](https://conemu.github.io) or [Alacritty](https://github.com/jwilm/alacritty) # Terminal features  * A VT220 terminal + various extensions * Multiple nested split panes * Tabs on any side of the window * Optional dockable window with a global spawn hotkey ("Quake console") * Progress detection * Notification on process completion * Bracketed paste, multiline paste warnings * Font ligatures * Custom shell profiles * Optional RMB paste and copy-on select (PuTTY style) # SSH Client  * SSH2 client with a connection manager * X11 and port forwarding * Automatic jump host management * Agent forwarding (incl. Pageant and Windows native OpenSSH Agent) * Login scripts # Serial Terminal * Saved connections * Readline input support * Optional hex byte-by-byte input and hexdump output * Newline conversion * Automatic reconnection # Portable Tabby will run as a portable app on Windows, if you create a `data` folder in the same location where `Tabby.exe` lives. # Plugins Plugins and themes can be installed directly from the Settings view inside Tabby. * [docker](https://github.com/Eugeny/tabby-docker) - connect to Docker containers * [title-control](https://github.com/kbjr/terminus-title-control) - allows modifying the title of the terminal tabs by providing a prefix, suffix, and/or strings to be removed * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - quickly send commands to one or all terminal tabs * [save-output](https://github.com/Eugeny/tabby-save-output) - record terminal output into a file * [sync-config](https://github.com/starxg/terminus-sync-config) - sync the config to Gist or Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - an example plugin which annoys you all the time * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - allows creating custom workspace profiles based on the given config * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - opens default system browser with a text selected from the Tabby's tab * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT * [background](https://github.com/moemoechu/tabby-background) - change Tabby background image and more... * [highlight](https://github.com/moemoechu/tabby-highlight) - Tabby terminal keyword highlight plugin * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - In-app web authentication popups (Built primarily for warpgate in-browser auth) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Powerful Model Context Protocol server integration for Tabby that seamlessly connects with AI assistants through MCP clients like Cursor and Windsurf, enhancing your terminal workflow with intelligent AI capabilities. # Themes * [hype](https://github.com/Eugeny/tabby-theme-hype) - a Hyper inspired theme * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - the Relaxed theme for Tabby * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) * [catppuccin](https://github.com/catppuccin/tabby) - Soothing pastel theme for Tabby * [noctis](https://github.com/aaronhuggins/tabby-colors-noctis) - color themes inspired by Noctis VS Code theme # Sponsors
[**packagecloud**](https://packagecloud.io) has provided free Debian/RPM repository hosting
[](https://keygen.sh/?via=eugene)
[**keygen**](https://keygen.sh/?via=eugene) has provided free release & auto-update hosting
Ten plik README jest również dostępny w językach: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · 🇧🇷 Português
---- [**Tabby**](https://tabby.sh) (formalnie **Terminus**) to wysoce konfigurowalny emulator konsoli, SSH oraz klienta konsoli szeregowej na systemy Windows 10, macOS oraz Linux * Zintegrowany klient SSH i Telnet oraz menedżer sesji * Zintegrowany klient terminala szeregowego * Motywy and palety kolorów * W pełni konfigurowalne skróty klawiszowe * Dzielenie ekranu * Zapamiętywanie okien z poprzednich sesji * PowerShell (oraz PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder i wsparcie dla CMD * Bezpośredni transfer plików sesji SSH przez Zmodem * Pełne wsparcie dla znaków Unicode wraz z podwójnymi znakami * Nie zawieszanie się przy szybko wyświetlanych wynikach * Pełne doświadczenie powłoki na systemie Windows zawierającej podpowiedzi (przez Clink) * Zintegrowany zaszyfrowany kontener na klucze SSH i jego konfigurację * Klient SSH, SFTP oraz Telnet dostępny jako [aplikacja webowa](https://tabby.sh/app) (również jako [własna instacja](https://github.com/Eugeny/tabby-web)). # Spis treści - [Czym jest, a czym nie jest Tabby](#what-tabby-is-and-isnt) - [Funkcje konsoli](#terminal-features) - [Klient SSH](#ssh-client) - [Konsola szeregowa](#serial-terminal) - [Wersja przenośna](#portable) - [Wtyczki](#plugins) - [Motywy i palety kolorów](#themes) - [Współtworzenie](#contributing) # Czym jest, a czym nie jest Tabby * **Tabby jest** alternatywą dla standardowej konsoli Windows (conhost), PowerShell ISE, PuTTY, Terminal.app oraz iTerm z macOS * **Tabby nie jest** nową powłoką lub zamiennikiem dla MinGW czy Cygwin. Nie jest również zatrważająco szybki - jeśli ważne jest dla Ciebie użycie pamięci RAM, rozważ użycie [Conemu](https://conemu.github.io) lub [Alacritty](https://github.com/jwilm/alacritty) # Funkcje konsoli  * Konsola VT220 + wiele rozszerzeń * Wiele nakładających się podzielonych okien * Okna na każdej stronie ekranu * Opcjonalne dokowanie okna za pomocą skrótu ("Quake console") * Wykrywanie postępu (Pasek) * Powiadomienia przy ukończeniu procesu podczas postępu * Wklejanie z nawiasami, ostrzeżenie przy wielu liniach * Wsparcie różnych czcionek * Niestandardowe profile powłoki * Opcjonalne wklejanie PPM oraz kopiowanie na zaznaczeniu (Styl PuTTY) # Klient SSH  * Klient SSH2 z zarządzaniem połączeń * X11 oraz przekierowywanie portów * Automatyczne przejście między hostami * Przekierowanie agenta (Pageant oraz Windowsowy natywny "OpenSSH Agent") * Skrypty logowania # Konsola Szeregowa * Zapisane połączenia * Wczytywanie danych wejścia linii * Opcjonalna konwersja danych wejścia i wyjścia na szesnastkowe "byte-by-byte" * Konwersja na nową linię * Automatyczne połączenie po rozłączeniu # Wersja przenośna Tabby będzie uruchamiał się jako aplikacja przenośna, tylko wtedy, kiedy utworzysz folder `data` w tej samej lokacji, w której znajduje się `Tabby.exe`. # Wtyczki Wtyczki (jak i motywy) mogą być instalowane bezpośrednio z widoku ustawień w środku aplikacji Tabby. * [docker](https://github.com/Eugeny/tabby-docker) - połączenie z kontenerami Docker * [title-control](https://github.com/kbjr/terminus-title-control) - pozwala na zmienianie tytułu konsoli jako prefiks, sufiks lub/albo tekst do usunięcia * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - szybko wysyłaj komendy z jednej konsoli do wielu * [save-output](https://github.com/Eugeny/tabby-save-output) - zapisuj dane wyjściowe do pliku * [sync-config](https://github.com/starxg/terminus-sync-config) - synchronizuj konfigurację przez Gista lub Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - przykładowa wtyczka, która zwyczajnie denerwuje * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - pozwala na utworzenie niestandardowego profilu pracy w aplikacji odpowiednio do konfiguracji * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - otwiera domyślną przeglądarkę z zaznaczonym tekstem w oknie Tabby * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - otwiera okno z połączeniem SFTP dla połączeń SSH jak SecureCRT * [background](https://github.com/moemoechu/tabby-background) - zmień tło Tabby oraz wiele więcej * [highlight](https://github.com/moemoechu/tabby-highlight) - Tabby terminal keyword highlight plugin * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - okienka autoryzacji wewnątrz konsoli (Zbudowany głównie pod autoryzację projektu Warpgate w przeglądarce) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Potężna integracja serwera Model Context Protocol dla Tabby, która bezproblemowo łączy się z asystentami AI poprzez klientów MCP, takich jak Cursor i Windsurf, usprawniając przepływ pracy w terminalu dzięki inteligentnym możliwościom AI. # Motywy i palety kolorów * [hype](https://github.com/Eugeny/tabby-theme-hype) - Motyw zainspirowany konsolą "Hyper" * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - Motyw "pełnej relaksacji" * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) - Motyw zainspirowany konsolą "Hyper" (kolejny) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) - Motyw zainspirowany Microsoftem * [altair](https://github.com/yxuko/terminus-altair) - Motwy autorstwa Yacine Kanzari * [catppuccin](https://github.com/catppuccin/tabby) - Paleta pastelowa dla Tabby * [noctis](https://github.com/aaronhuggins/tabby-colors-noctis) - Paleta kolorów zainspirowana motywem Noctis z VS Code # Sponsorzy [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) zapewnia darmowe utrzymanie repozytorium Debian/RPM [](https://keygen.sh/?via=eugene) [**keygen**](https://keygen.sh/?via=eugene) zapewnia darmowe wydawanie oraz automatycznie utrzymywanie strony # Współtworzenie Pull requesty and dodawanie nowych wtyczek jest mile widziane! Zobacz plik [HAKOWANIE.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) oraz [Dokumentację API](https://docs.tabby.sh/), aby poznać, jak projekt jest prowadzony wraz ze wstępnym poradnikiem jak tworzyć wtyczki. --- Dziękujemy wszystkim osobom współtworzącym ten projekt ([emotki są specjalizacją](https://allcontributors.org/docs/en/emoji-key)):Esse README também está disponível em: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :poland: Polski
---- [**Tabby**](https://tabby.sh) (anteriormente **Terminus**) é um emulador de terminal, SSH e serial client altamente configurável para Windows, macOS e Linux. * Cliente e gerenciador de conexões SSH e Telnet integrado * Terminal serial integrado * Temas e esquemas de cores * Atalhos e atalhos multiplos totalmente configuravéis * Divisor de painéis * Recupera as guias da ultima execução * Suporte para PowerShell (e PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder e CMD * Transferência direta de arquivos de/para sessões SSH via Zmodem * Suporte total para Unicode, incluindo caracteres de largura dupla * Não trava com saídas de fluxo rápido * Experiência de shell adequada no Windows, incluindo preenchimento de guia (via Clink) * Contêiner criptografado integrado para as chaves SSH e configurações * SSH, SFTP e Cliente Telnet disponível como [aplicação web](https://tabby.sh/app) (também em [hospedagem local](https://github.com/Eugeny/tabby-web)). # Conteúdo - [O que é Tabby e o que não é](#what-tabby-is-and-isnt) - [Recursos do Terminal](#terminal-features) - [Cliente SSH](#ssh-client) - [Terminal Serial](#serial-terminal) - [Portátil](#portable) - [Plugins](#plugins) - [Temas](#themes) - [Contribuições](#contributing) # O que é Tabby e o que não é * **Tabby é** uma alternativa ao terminal padrão do Windows (conhost), PowerShell ISE, PuTTY, macOS Terminal.app e iTerm * **Tabby não é** um novo shell ou um substituto do MinGW ou Cygwin. Também não é leve - se o uso de RAM for importante, considere usar o [Conemu](https://conemu.github.io) ou [Alacritty](https://github.com/jwilm/alacritty) # Recursos do Terminal  * Um terminal VT220 + várias extensões * Múltiplos painéis divididos aninhados * Guias em qualquer lado da janela * Opção de minimizar para a barra de tarefas com uma tecla de atalho global ("Quake console") * Detecção de progresso * Notificação da conclusão do processo * Colar entre colchetes, avisos de colagem de várias linhas * Ligadura tipográfica * Perfis shell personalizados * Opção de selecionar para copiar e colar com o botão direto do mouse (RMB) igual ao Putty # Cliente SSH  * Cliente SSH2 com gerenciador de conexões * X11 e redirecionamento de portas (port forwarding) * Gerenciamento de host de saldo automatico (Jump Host) * Encaminhamento de agente (incl. Pageant e agente OpenSSH nativo do Windows) * Scripts de Login # Terminal Serial * Salva as Conexões * Suporte de entrada de linha * Opões de saida em hex, byte a byte e hexdump * Conversão de nova linha * Reconexão automatica # Portátil Tabby será executado como um aplicativo portátil no Windows, se você criar uma pasta chamada 'data' no mesmo local do executável 'Tabby.exe' # Plugins Plugins e temas podem ser instalados durante a execução na pagina de configurações > plugins * [docker](https://github.com/Eugeny/tabby-docker) - conecta aos conteiners Docker * [title-control](https://github.com/kbjr/terminus-title-control) - permite modificar o título das guias do terminal fornecendo um prefixo, sufixo e/ou strings a serem removidos * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - envie comandos rapidamente para uma ou todas as guias do terminal * [save-output](https://github.com/Eugeny/tabby-save-output) - gravar a saída do terminal em um arquivo * [sync-config](https://github.com/starxg/terminus-sync-config) - sincronizar a configuração com Gist ou Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - um plugin de exemplo que te incomoda o tempo todo * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - permite criar perfis de espaço de trabalho personalizados com base na configuração fornecida * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - abre o navegador padrão do sistema com um texto selecionado na guia do Tabby * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - abre uma guia SFTP para conexão SSH como o SecureCRT * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - pop-ups de autenticação web dentro do aplicativo (Construído principalmente para autenticação in-browser do warpgate) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Integração poderosa do servidor Model Context Protocol para Tabby que se conecta perfeitamente com assistentes de IA através de clientes MCP como Cursor e Windsurf, aprimorando seu fluxo de trabalho no terminal com recursos inteligentes de IA. # Temas * [hype](https://github.com/Eugeny/tabby-theme-hype) * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # Patrocinadores [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) forneceu hospedagem gratuita de repositório Debian/RPM [](https://keygen.sh/?via=eugene) [**keygen**](https://keygen.sh/?via=eugene) forneceu hospedagem gratuita para liberação e atualização automática # Contribuições Pull requests e plugins são bem-vindos! Consulte os documentos [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) e [API docs](https://docs.tabby.sh/) para obter informações sobre como o projeto foi estruturado e um breve tutorial de desenvolvimento de plug-in. --- Obrigado vai para essas pessoas maravilhosas ([emoji key](https://allcontributors.org/docs/en/emoji-key)):Этот README также доступен на: :gb: English · :es: Spanish · :kr: 한국어 · :cn: 简体中文 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh) (ранее **Terminus**) — широко конфигурируемый эмулятор терминала, SSH- и COM-клиент для Windows, macOS и Linux: * Встроенный SSH- и Telnet-клиент и менеджер подключений; * Встроенный последовательный терминал; * Темы и цветовые схемы; * Полностью настраиваемые сочетания клавиш; * Панели; * Запоминание вкладок; * Поддержка PowerShell (and PS Core), WSL, Git-Bash, Cygwin, MSYS2, Cmder и CMD; * Прямая передача файлов из и в SSH-сессии через Zmodem; * Полная поддержка Unicode, включая символы двойной ширины; * Не задыхается при быстром выводе; * Полноценный опыт работы с shell на Windows, включая дополнение слов и команд по Tab (при помощи Clink); * Встроенное защищённое хранилище для SSH-ключей и настроек; * SSH-, SFTP- и Telnet-клиент доступен как [веб-приложение](https://tabby.sh/app) (также для [самостоятелньного хостинга](https://github.com/Eugeny/tabby-web)). # Содержание - [Правда и ложь про Tabby](#правда-и-ложь-про-tabby) - [Функции терминала](#функции-терминала) - [SSH-клиент](#ssh-клиент) - [Терминал последовательного порта](#терминал-последовательного-порта) - [Портативность](#портативность) - [Плагины](#плагины) - [Темы](#темы) - [Внести свой вклад](#внести-свой-вклад) # Правда и ложь про Tabby * **Правда:** Tabby — это альтернатива стандартному терминалу Windows (conhost), PowerShell ISE, PuTTY, macOS Terminal.app и iTerm. * **Ложь:** Tabby — это не новая оболочка или замена MinGW или Cygwin. Также он нелёгок — если потребление ОЗУ крайне важно для вас, лучше взгляните на [Conemu](https://conemu.github.io) или [Alacritty](https://github.com/jwilm/alacritty). # Функции терминала  * Терминал VT220 + различные дополнения; * Деление окна на несколько панелей; * Вкладки на любой стороне окна; * Опционально закрепляемое окно с глобальной горячей клавишей для вызова («Quake console»); * Определение прогресса выполняемого процесса; * Уведомления о завершении процессов; * Защита от выполнения команд при вставке, предупреждения о вставке нескольких строк; * Лигатуры шрифтов; * Пользовательские профили оболочки; * Опциональная ПКМ-вставка и копирование при выделении (в стиле PuTTY). # SSH-клиент  * SSH2-клиент с менеджером соединений; * Проброс портов и X11; * Управление автоматическими джамп-хостами; * Проброс агента (включая Pageant и встроеный в Windows OpenSSH Agent); * Скрипты для входа. # Терминал последовательного порта * Сохранение соединений; * Поддержка ввода readline; * Опциональный побатный ввод HEX и вывод hexdump; * Преобразование newline; * Автоматическое восстановление соединения. # Портативность На Windows Tabby будет работать в портативном режиме, если создать папку `data` там же, где расположен файл `Tabby.exe`. # Плагины Плагины и темы можно установить напрямую из Настроек Tabby. * [clickable-links](https://github.com/Eugeny/tabby-clickable-links) — делает пути и URL в терминале гиперссылками; * [docker](https://github.com/Eugeny/tabby-docker) — подключения к Docker-контейнерам; * [title-control](https://github.com/kbjr/terminus-title-control) — позволяет изменять названия вкладок, добавляя префиксы, суффиксы и позволяя удалять строки; * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) — быстро передаёт команды в одну или все вкладки терминала; * [save-output](https://github.com/Eugeny/tabby-save-output) — запись вывода терминала в файл; * [sync-config](https://github.com/starxg/terminus-sync-config) — синхронизация конфига в Gist или Gitee; * [clippy](https://github.com/Eugeny/tabby-clippy) — плагин-пример, который постоянно будет вас бесить; * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) — позволяет создавать пользовательские профили рабочего окружения на основе конфига; * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) — открывает браузер по умолчанию с текстом, выделенном во вкладке Tabby. * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - открывает sftp вкладку для ssh соединения, похож на SecureCRT * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - Встроенные всплывающие окна веб-аутентификации (Основано в основном для аутентификации в браузере warpgate) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - Мощная интеграция сервера протокола Model Context Protocol для Tabby, которая беспрепятственно соединяется с ИИ-ассистентами через MCP-клиенты, такие как Cursor и Windsurf, улучшая рабочий процесс в терминале с помощью интеллектуальных возможностей искусственного интеллекта. # Темы * [hype](https://github.com/Eugeny/tabby-theme-hype) — тема, вдохновлённая Hyper; * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) — тема Relaxed для Tabby; * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox); * [windows10](https://www.npmjs.com/package/terminus-theme-windows10); * [altair](https://github.com/yxuko/terminus-altair). # Спонсоры [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) предоставил бесплатный хостинг для Debian/RPM репозитория. # Внести свой вклад Pull-запросы и плагины приветствуются! Взгляните на [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) и [API docs](https://docs.tabby.sh/), чтобы понять, как устроен проект, и ради очень краткого туториала по созданию плагинов. --- Огромное спасибо этим прекрасным людям ([описание эмодзи](https://allcontributors.org/docs/en/emoji-key)):本 README 还适用于以下语言: :gb: English · :es: Spanish · :ru: Русский · :kr: 한국어 · :it: Italiano · :de: Deutsch · :jp: 日本語 · :id: Bahasa Indonesia · :brazil: Português · :poland: Polski
---- [**Tabby**](https://tabby.sh) (前身是 **Terminus**) 是一个可高度配置的终端模拟器和 SSH 或串口客户端,支持 Windows,macOS 和 Linux * 集成 SSH,Telnet 客户端和连接管理器 * 集成串行终端 * 定制主题和配色方案 * 完全可配置的快捷键和多键快捷键 * 分体式窗格 * 自动保存标签页 * 支持 PowerShell(和 PS Core)、WSL、Git-Bash、Cygwin、MSYS2、Cmder 和 CMD * 在 SSH 会话中通过 Zmodem 进行直接文件传输 * 完整的 Unicode 支持,包括双角字符 * 不会因快速的输出而卡住 * Windows 上舒适的 shell 体验,包括 tab 自动补全(通过 Clink) * 为 SSH secrets 和设置集成了加密容器 * SSH、SFTP 和 Telnet 客户端可用作 [Web 应用](https://tabby.sh/app)(也可[托管](https://github.com/Eugeny/tabby-web)) # 目录 - [Tabby是什么](#tabby是什么) - [终端特性](#终端特性) - [SSH 客户端](#ssh-客户端) - [串行终端](#串行终端) - [便携式应用](#便携式应用) - [插件](#插件) - [主题](#主题) - [贡献](#贡献) # Tabby是什么 * **Tabby 是** Windows 标准终端 (conhost)、PowerShell ISE、PuTTY、macOS Terminal.app 和 iTerm 的替代品 * **Tabby 不是**一个全新的 shell,也不是 MinGW 或 Cygwin 的替代品。它也不是轻量级的 - 如果你对内存的占用很敏感,请考虑 [Conemu](https://conemu.github.io) 或 [Alacritty](https://github.com/jwilm/alacritty) # 终端特性  * 一个 VT220 终端 + 各种插件 * 多个嵌套的拆分窗格 * 可以将标签页设置在窗口的任意一侧 * 带有全局生成热键的可选可停靠窗口(“Quake console”) * 进度检测 * 流程完成通知 * 带括号的粘贴,多行粘贴提示 * 连体字 * 自定义 shell 配置文件 * 可选的 RMB 粘贴和复制选择(PuTTY 风格) # SSH 客户端  * 带有连接管理器的 SSH2 客户端 * X11和端口转发 * 自动跳转主机管理 * 代理转发(包括 Pageant 和 Windows 原生 OpenSSH 代理) * 登录脚本 # 串行终端 * 保存连接 * 逐行读取的输入支持 * 可选的十六进制逐字节输入和十六进制转储输出 * 换行转换 * 自动重连 # 便携式应用 如果在 Tabby.exe 所在的目录创建一个名为`data`文件夹,Tabby 将可以在 Windows 上作为便携式的应用程序运行。 # 插件 插件和主题可以直接在 Tabby 设置中安装。 * [clickable-links](https://github.com/Eugeny/tabby-clickable-links) - 使终端中的路径和 URL 可点击 * [docker](https://github.com/Eugeny/tabby-docker) - 连接 Docker 容器 * [title-control](https://github.com/kbjr/terminus-title-control) - 允许通过提供要删除的前缀、后缀和/或字符串来修改标签页的标题 * [quick-cmds](https://github.com/Domain/terminus-quick-cmds) - 快速向一个或所有标签页发送命令 * [save-output](https://github.com/Eugeny/tabby-save-output) - 将终端输出记录到文件中 * [sync-config](https://github.com/starxg/terminus-sync-config) - 将配置同步到 Gist 或 Gitee * [clippy](https://github.com/Eugeny/tabby-clippy) - 一个可以一直烦你的示例插件 * [workspace-manager](https://github.com/composer404/tabby-workspace-manager) - 允许根据给定的配置创建自定义工作区配置文件 * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) - 从 Tabby 标签页带有选中的文本来打开系统默认浏览器 * [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - 为ssh连接打开类似SecureCRT的sftp标签页 * [web-auth-handler](https://github.com/Jazzmoon/tabby-web-auth-handler) - 应用内网页认证弹出窗口(主要为warpgate浏览器认证而建) * [mcp-server](https://github.com/thuanpham582002/tabby-mcp-server) - 为 Tabby 提供强大的模型上下文协议服务器集成,可通过 Cursor 和 Windsurf 等 MCP 客户端无缝连接 AI 助手,利用智能 AI 功能增强您的终端工作流程。 # 主题 * [hype](https://github.com/Eugeny/tabby-theme-hype) - 受 Hyper 启发的主题 * [relaxed](https://github.com/Relaxed-Theme/relaxed-terminal-themes#terminus) - 为 Tabby 打造的 Relaxed 主题 * [gruvbox](https://github.com/porkloin/terminus-theme-gruvbox) * [windows10](https://www.npmjs.com/package/terminus-theme-windows10) * [altair](https://github.com/yxuko/terminus-altair) # Sponsors [](https://packagecloud.io) [**packagecloud**](https://packagecloud.io) 提供了免费的 Debian/RPM 存储库托管 # 贡献 欢迎提交 PR 和插件! 请参阅 [HACKING.md](https://github.com/Eugeny/tabby/blob/master/HACKING.md) 和 [API 文档](https://docs.tabby.sh/) 以获取有关项目布局的信息以及非常简短的插件开发教程。 --- 感谢这些人,他们棒极了!([emoji key](https://allcontributors.org/docs/en/emoji-key)):clink config theme use name to apply a color theme, or set the `CLINK_COLORTHEME` environment variable to the color theme name.
- Added support for `*.clinkprompt` custom prompt files; see [Custom Prompts](#custom-prompts) for more information. This makes it easy to share custom prompts, and to have a library of many different custom prompts and switch between them quickly and easily. One .clinkprompt can be active at a time; activating one deactivates any others.
- Added several `clink config prompt` commands for custom prompts (run `clink config prompt --help`).
- [Oh-My-Posh](#oh-my-posh) support is included.
- Also included are ports of [Agnoster](https://github.com/agnoster/agnoster-zsh-theme), [Pure](https://github.com/sindresorhus/pure), [Headline](https://github.com/Moarram/headline), [Antares](https://github.com/elB4RTO/zsh-themes/tree/master/antares), and a few others (all ported from zsh to Clink).
- Use clink config prompt use name to activate a custom prompt module, or set the `CLINK_CUSTOMPROMPT` environment variable to the custom prompt name.
- Added the ability to show input hints in the comment row (below the input line).
- Input hints are off by default, and can be enabled with `clink set comment_row.show_hints true`.
- Argmatchers can provide input hints; see [Show a Usage Hint](#addarg_hint) for more information.
- Lua scripts can create custom hinters; see [Showing Input Hints](#showinginputhints) for more information.
- Enhanced the syntax for setting colors; added `italic` and `reverse`, and added `#XXXXXX` and `#XXX` shortcuts for specifying 24-bit color values.
- Added more popup list colors: `color.popup_border`, `color.popup_header`, `color.popup_footer`, `color.popup_select`, and `color.popup_selectdesc`.
- Changed phrasing from "Accept Suggestion" to "Insert Suggestion" in the documentation and in the auto-suggestions usage hint text.
- Changed the Lua `print()` function to support UTF8 output and terminal escape codes. Now the only reasons for a script to use `clink.print()` instead of `print()` are (1) background compatibility or (2) using `NONL` to suppress printing a line ending.
- Improved terminal output logging when the `debug.log_terminal` setting is enabled (the setting is only for diagnostic use).
- Now it captures all WriteConsoleW and WriteFile output sent to stdout or stderr (instead of only capturing output from the Readline library).
- Added a `debug.log_output_callstacks` setting which includes callstacks for each output reported by the `debug.log_terminal` setting.
- Added a workaround for Unicode limitations in legacy console windows and legacy terminals (improves cursor position accuracy when Unicode surrogate pairs are present).
- Added several new Lua APIs for color themes and custom prompts: [clink.getprompts()](#clink.getprompts), [clink.applyprompt()](#clink.applyprompt), [clink.getclinkprompt()](#clink.getclinkprompt), [clink.getthemes()](#clink.getthemes), [clink.readtheme()](#clink.readtheme), [clink.applytheme()](#clink.applytheme), [settings.clear()](#settings.clear), [settings.parsecolor()](#settings.parsecolor), [settings.formatcolor()](#settings.formatcolor), [os.createguid()](#os.createguid).
- Added [git Lua APIs](#git) for use by custom prompts.
- Added optional `cookie` argument to [clink.promptcoroutine()](#clink.promptcoroutine) to make it simple for *.clinkprompt files to allow customization that makes use of asynchronous prompt filtering without needing modifications to the main *.clinkprompt file.
- Fixed detecting file associations (some file extensions weren't detected as having file associations, causing executable completion to omit them, and causing input line coloring to be inaccurate).
- Fixed a case where updating the right side prompt could leave stray characters behind.
- Fixed a case where the `match.coloring_rules` setting could have no effect.
- Fixed delay when typing `X:` and it's a remote drive.
- Fixed coloring `2>&1`; the `1` wasn't colored.
- Fixed color of leading blank lines in a prompt string (use the terminal's default color, not the `color.prompt` color).
- Fixed `rl.collapsetilde()` which just didn't do its job.
- Fixed `%clink_dummy_capture_env%` to stop accidentally leaking into the environment variables collection.
- Fixed an infinite loop when `prompt.async` was false.
- Fixed F9 to stop jumping one past the actual entered history number.
- Fixed various edge case bugs in the input line display, which were uncovered while adding the ability to show input hints.
#### v1.6.21
- Reduced the performance overhead of hooked APIs from about 20 microseconds to about 2 microseconds.
- Enhanced the executable recognition to avoid flickering red (or `color.unrecognized`) for an executable name that was already recognized in a recent previous input line.
- Enhanced the `srcmap` command in the Lua debugger so that `srcmap dir` automatically sets up source mappings for Clink's built in scripts using `dir` as the repo root.
- Fixed when `history.expand_mode` is `off`; it didn't fully turn off all of the history expansion syntax forms (for example the `^` syntax).
- Fixed input line coloring when the first word is a device name (e.g. `nul` or `com1:`); it should use `color.unrecognized` for the color.
- Fixed [#651](https://github.com/chrisant996/clink/issues/651); completion doesn't work for `./` and `../` anymore in the first word of a command line. Now when the `match.translate_slashes` setting is `system` or `backslash` then completing `./` and `../` can complete the word as a path, even though CMD does not consider it to be a path.
- Fixed [#653](https://github.com/chrisant996/clink/issues/653); `clink_start.cmd` gets run twice if the binaries directory is the same as the profile directory.
- Fixed [#654](https://github.com/chrisant996/clink/issues/654); input line coloring doesn't treat `^` correctly inside quotes (and related quirks).
#### v1.6.20
- Fixed [#652](https://github.com/chrisant996/clink/issues/652); error when trying to update again after updating to v1.6.20 (regression introduced in v1.6.19).
#### v1.6.19
- Fixed truncated descriptions with `clink set exec.` and then `clink-select-complete` (Ctrl-Space) (regression introduced in v1.6.11).
- Fixed fully qualified paths from a different local drive accidentally being colored with `color.unrecognized`.
- Fixed [#648](https://github.com/chrisant996/clink/issues/648); on Windows 8.1 the title bar can get changed to "Windows PowerShell" for the rest of the CMD session.
#### v1.6.18
- Added a new callback function that can be assigned to an argument position in the table given to `:addarg()` via `onalias=` (see [Responding to Arguments in Argmatchers](#responsive-argmatchers) for more information). The git argmatcher in the [clink-completions](https://github.com/vladimir-kotikov/clink-completions) repo uses this to support git aliases.
- When a doskey alias doesn't include any `$` tokens then CMD is guaranteed to ignore the rest of the command line after the alias, so now argmatcher parsing also ignores the rest of the command line and colors it using `color.unexpected`.
- Suppress the ANSICON warning in the log file and diagnostics output on Windows 8.1. The performance problem in ANSICON exists, but apparently there isn't a better alternative before Windows 10.
#### v1.6.17
- Added warning in the log file and in `clink-diagnostics` (Ctrl-X,Ctrl-Z) when ANSICON is detected on Windows 8.1 or greater (it's unnecessary, less functional, and greatly degrades performance).
- Added language info in `clink-diagnostics` when the code page is not 1252 (for easier troubleshooting).
- Fixed finding argmatchers registered with exact names (typing `foo` couldn't find an argmatcher registered as `c:\dir\foo.exe` because it accidentally looked for `c:\dir\foo.EXE`).
- Fixed [#631](https://github.com/chrisant996/clink/issues/631); script error after `cmd ` when the current language is German.
#### v1.6.16
- Added a workaround for how [scoop](https://scoop.sh/) tries to control app versions and updates ([#615](https://github.com/chrisant996/clink/issues/615); scoop causes `clink autorun install` to use a wrong path).
- Added an `auto` mode for the `match.translate_slashes` setting. This mode makes completion translate all slashes in the completed word to match whichever kind occurs first in the word, or to the system path separator if there are no slashes yet (e.g. when completing a directory name).
- Changed the default to `auto` for the `match.translate_slashes` setting.
- Updated the `clink.slash_translation()` function.
- UNC share name completion works with forward slashes now (e.g. `//localhost/`).
- Added a `clink-toggle-slashes` bindable command, bound by default to Ctrl-/. The command toggles between forward and backslashes in the word at the cursor point, or in the Nth word if a numeric argument is provided (e.g. by the Alt-Digit keys).
- Fixed the `off` mode for the `matches.translate_slashes` setting (regression introduced in v1.1.23).
- Fixed input line coloring of `@` in `for %a in (*) do @whatever`.
- Fixed crash in `glob-list-expansions` when used on an empty word (regression introduced in v1.3.36).
- Fixed wildcard completions when `match.wild` is on and `match.substring` is off.
- Fixed obscure edge case where match filtering with wildcards could potentially yield inaccurate results immediately after an auto-suggestion was offered.
#### v1.6.15
- Fixed hiding internal script names in the `clink-diagnostics` output (regression introduced in v1.6.11).
- Fixed [#613](https://github.com/chrisant996/clink/issues/613); wrong input line coloring for `cmd /c "command line"`.
#### v1.6.14
- Fixed `menu-complete` to respect `completion-auto-query-items`.
- Fixed missing line break before `dump-macros`, `dump-variables`, `clink-dump-functions`, and `clink-dump-macros` (regression introduced in v1.6.3).
- Fixed `rl.getbinding()` to return `clink-select-complete` instead of `clink-popup-complete` (the latter is just an alias; the real command name is `clink-select-complete`).
#### v1.6.13
- Popup lists can now be filtered.
- Press F4 in a popup list to toggle the search mode between "find" and "filter".
- The `clink.popup_search_mode` setting controls the default search mode.
- The `clink.popuplist()` function can be told to start in a specific search mode.
- Added `os.findfiles()` to allow getting files/directories one at a time (versus `os.globfiles()` which collects the entire set all at once into a table).
- Added `exec.associations` setting to let Executable Completion include files with registered file associations as matches (e.g. launchable documents such as "*.pdf" files).
- Fixed Ctrl-C in a popup list copying the wrong entry after having used Del to delete an entry.
- Fixed input line coloring to use `color.executable` also for files included by the `exec.path` setting, if the files have registered file associations.
#### v1.6.12
- Fixed [#597](https://github.com/chrisant996/clink/issues/597); prompt shows leftover text sometimes (regression introduced in v1.6.10).
- Fixed [#596](https://github.com/chrisant996/clink/issues/596); it's easy to forget whether Enter in history list executes or inserts.
#### v1.6.11
- Added `os.setalias()` for setting a doskey alias without needing to invoke the doskey.exe program.
- Fixed a case where match descriptions could be displayed with incorrect padding and truncation.
- Lua debugging enhancements:
- Changed the built-in embedded scripts to include debug info, which allows some Lua error messages to be more useful for troubleshooting.
- Added `srcmap` command in the Lua debugger to override where to find source files.
#### v1.6.10
- Added an optimization to further reduce flicker when re-drawing the prompt.
- Added a `user_data.shared_user_data` table to allow linked argmatchers to share data with each other while an input line is being parsed (see [Responding to Arguments in Argmatchers](https://chrisant996.github.io/clink/clink.html#responsive-argmatchers) for details).
- Fixed [#579](https://github.com/chrisant996/clink/issues/579); popup lists could accidentally truncate text in the first column when there's only one column.
- Fixed [#576](https://github.com/chrisant996/clink/issues/576); setup exe doesn't remove old uninstall exe files.
- Fixed [#575](https://github.com/chrisant996/clink/issues/575); error when `color.executable` is set and `color.unrecognized` is not (regression introduced in v1.6.2).
#### v1.6.9
- Fixed [#574](https://github.com/chrisant996/clink/issues/574); `prompt.spacing` "eats" lines containing Unicode Surrogate Pairs such as for some [nerdfont](https://nerdfonts.com) icons (Windows Terminal accidentally returns that such lines are empty).
- Fixed [#573](https://github.com/chrisant996/clink/issues/573); C# was unable to read Clink's version resource.
- Fixed [#555](https://github.com/chrisant996/clink/issues/555); security advisory [CVE-2020-24370](https://github.com/advisories/GHSA-gfr4-c37g-mm3v) for a Lua bug.
#### v1.6.8
- Fixed [#571](https://github.com/chrisant996/clink/issues/571); error in clink.bat under some circumstances (regression introduced in v1.6.7).
#### v1.6.7
- Recognize the little-known `cmd /r` as a synonym for `cmd /c` so that Clink can optimize and skip injecting into a `cmd /r` process.
- Fixed displaying descriptions when they're left-justified (regression introduced in v1.6.6).
- Fixed `argmatcher:chaincommand("run")` to not find argmatchers for builtin CMD command names (since CMD doesn't get invoked in that case, so it won't get interpreted as a CMD command).
- Fixed `argmatcher:chaincommand()` to find an argmatcher for a builtin CMD command even if a directory exists with the same name (since CMD interprets that case as a CMD command).
- Fixed `argmatcher:chaincommand("cmd")` so when `exec.aliases` is enabled it can include aliases as completions.
- Fixed `argmatcher:addarg({loopchars="+", etcetc})` so that `-Q:+x` still gets parsed into two input words `-Q:` and `+x`.
- Fixed to parse `foo^ bar` as two words "foo" and "bar".
- Fixed to recognize `^echo` (etc) as a builtin CMD command name despite embedded `^` characters.
- Fixed [#570](https://github.com/chrisant996/clink/issues/570); fixed #569 more thoroughly, and `cd /d` cannot be used anywhere because it also requires command extensions.
#### v1.6.6
- Added `clink history --no-show-time` to allow omitting history timestamps even when the `history.time_stamp` setting is `show`.
- Fixed match display to not right justify descriptions when the screen isn't wide enough or when descriptions contain aligned columns (like `clink set` completions do since v1.6.3).
- Fixed `clink history` when output is redirected; strip any escape codes that might be embedded in the time format.
- Fixed [#569](https://github.com/chrisant996/clink/issues/569); `cmd /e:off` causes syntax error in clink.bat script.
- Fixed [#567](https://github.com/chrisant996/clink/issues/567); `clink history compact` accidentally deletes all timestamps.
- Fixed documentation error in Lua API Reference about `"w"` mode in `io.open()` and `io.sopen()` (the behavior was correct, but the documentation was inaccurate/unclear).
#### v1.6.5
- Added all match fields in the table of matches passed to the `clink.onfiltermatches()` callback function.
- Fixed stripping colors from strings (e.g. when displaying in popup lists); it didn't strip 8-bit and 24-bit colors correctly.
#### v1.6.4
- Added `rl_buffer:hassuggestion()` and `rl_buffer:insertsuggestion()` for direct access to inserting suggestions without invoking Readline commands.
- Added `clink.dirmatchesexact()` and `clink.filematchesexact()` which are the same as the non-`exact` variants, except these don't append a `*` to the search pattern. For example, `clink.filematchesexact("*.zip")` can collect exactly "\*.zip" file matches instead of "\*.zip\*".
- Added OS version info to `clink info`.
- Added UNC share name completion when using Executable Completion (the `exec.enable` setting).
- Fixed completing input `.` or `..` when the `exec.enable` setting is enabled.
- Fixed applying `colored-completion-prefix` when match display filtering is active or a match has a custom `display` field.
- Fixed the `exec.path` setting so it doesn't accidentally include directories if their names end with an executable extension such as `.exe`.
- Fixed finding an argmatcher registered with a full path (e.g. `c:\foo\bar.exe`) when a full path is entered without a drive letter (e.g. enter `\foo\bar.exe`).
- Fixed [#562](https://github.com/chrisant996/clink/issues/562); `clink autorun install` strips quotes by mistake.
#### v1.6.3
- **Breaking Change:** For the four Ctrl-- key combinations, Clink got the Shift key backwards and generated inaccurate input codes. And that broke the Readline/bash default key binding for `undo` (the Windows default key binding of Ctrl-z works fine). If your .inputrc file has bindings for any of the Ctrl-- key combinations then you can keep the keys working the same by updating the key bindings. You can even use the [`$if clink_version >= 1.6.3`](#if_clink_version) syntax in your .inputrc file to make it define the key bindings differently in different versions of Clink.
Key Combination | Old Code | New Code
-|-|-
Ctrl-- | `"\C-_"` or `C-_` | `"\e[27;5;189~"`
Ctrl-Shift-- | `"\e[27;6;189~"` | `"\C-_"` or `C-_`
Ctrl-Alt-- | `"\e\C-_"` or `"\M-\C-_"` or `M-C-_` or etc | `"\e[27;7;189~"`
Ctrl-Alt-Shift-- | `"\e[27;8;189~"` | `"\e\C-_"` or `"\M-\C-_"` or `M-C-_` or etc
- Completions for all `clink set` settings include the current value in the description field (e.g. type `clink set `Alt-= to see Clink settings and their current values).
- Fixed to differentiate between `undo` and `vi-undo` commands again (they do the same thing, but are technically different commands).
- Fixed `execute-named-command` to also accept Ctrl-- for `undo` (the emacs binding for undo).
- Fixed redisplaying multi-line prompts after using completion during `execute-named-command`.
- Fixed accidentally loading the history file twice on each prompt; now it loads once, as intended.
- Fixed another double-free and potential crash in the Readline library; after navigating through history entries and then editing a history entry, pressing Ctrl-c or Ctrl-Break could cause a crash or memory corruption (regression exposed by changes in Readline 8.2).
- Applied fixes for 6 Lua bugs, curated by [@goodusername123](https://github.com/goodusername123) (thank you!) from [Lua.org](https://lua.org/bugs.html):
- "Dead keys with nil values can stay in weak tables."
- "Expression list with four or more expressions in a 'for' loop can crash the interpreter."
- "Label between local definitions can mix-up their initializations."
- "Return hook may not see correct values for active local variables when function returns."
- "Suspended __le metamethod can give wrong result."
- "Wrong code generated for a 'goto' followed by a label inside an 'if'."
- Fixed the Lua debugger so 5-digit line numbers don't break indentation when showing source code lines.
#### v1.6.2
- Added optional argument `argmatcher:chaincommand(aliases)` to let the argmatcher know that the chained command will have doskey aliases expanded.
- Fixed match display potentially missing some matches (regression introduced in v1.6.1). In particular, git command completions were affected.
- Fixed command line input parsing so that the first word (the command word) `foo/` is interpreted as two words `foo` and `/` just like CMD does.
- Fixed [#549](https://github.com/chrisant996/clink/issues/549); `cd -` intercept interferes with `cd` doskey alias.
- Fixed [#546](https://github.com/chrisant996/clink/issues/546); in Windows 10 when "Wrap text output on resize" is unchecked or the Window Width is different from the Screen Buffer Width, then the display becomes garbled. The root cause is a limitation in how Windows 10 implements support for ANSI escape codes, but Clink now has workaround code that tries to compensate for the problems as much as possible (the terminal display will be a bit jittery, though; there's nothing that can be done about that).
- Fixed updating the display after using `clink-popup-show-help` to invoke a command that changes only the cursor position.
- Fixed a case where a custom strategy for auto-suggestions could accidentally skip inserting part of the suggestion.
- Fixed a race condition where `clink-diagnostics` could encounter an error while printing information about coroutines.
**Important pre-release changes in Readline:**
Readline 8.2 introduced a crash in the `undo` command after navigating through history and making edits in history entries. The following pre-release updates in Readline fix the crash and several related issues. They also fix many other edge-case stability issues, and add a couple of new features.
- Fixed crashes due to memory corruption in the undo information for editing operations.
- Fixed many issues found by Address Sanitizer (ASAN); these are edge cases where crashes or memory corruption or malfunctions or memory leaks occurred.
- Added new `execute-named-command` bindable command which reads a command name from the input and executes it (default is Alt-x).
- Allow `quoted-insert` into search strings.
- Repeated invocations of `vi-yank-pop` now cycle through the kill ring.
- Fixed when `do-lowercase-version` is bound to something that's not an uppercase letter.
- Fixed getting the value of the `active-region-start-color` config variable.
#### v1.6.1
**Features:**
- Improved input line parsing and coloring:
- Commands starting with `@` are supported, and completion correctly ignores the `@`.
- Each of the following CMD syntax errors are recognized: lines starting with `&` or `@2>`, and lines containing `& &` or `2>&file`.
- The whole redirections `2>file` or `>file` or `2>&1` are colored instead of only the `>` or `>&`.
- Completions for `clink set` color settings include a color sample in the description field (e.g. type `clink set color`Alt-= to see the color settings and their current color samples).
- The `clink-reload` bindable command now reverts key bindings and config variables before reloading the inputrc file, so that old bindings and values don't linger in the current session if they've been removed from the inputrc file.
- Added `clink-dump-functions` and `clink-dump-macros` bindable commands. These behave similar to `dump-functions` and `dump-macros`, but they show user-friendly key names and `luafunc:` macros are listed as functions instead of as macros.
- Added some new "bigword" cursor movement commands for moving to the next or previous space delimited word; `clink-backward-bigword`, `clink-forward-bigword`, `cua-backward-bigword`, `cua-forward-bigword`.
- Added a new conditional directive `$if clink_version` in the inputrc file (e.g. `$if clink_version >= 1.6.1`).
- Added a new `prompt.spacing` setting which can control blank lines before the prompt (it was a clink-flex-prompt feature which has now been incorporated into Clink itself).
- Added a new `match.coloring_rules` setting and `%CLINK_MATCH_COLORS%` environment variable, both of which supersede Readline's `%LS_COLORS%` definitions when displaying match completions.
- Internal changes.
**Lua:**
- Added `line_state:getrangeoffset()` and `line_state:getrangelength()` to get the beginning offset and length of the range in the input line described by the line_state.
- Added `console.explodeansi()` to split a string into substrings on ANSI escape code boundaries.
- Added `rl.getinputrcfilename()` to get the loaded inputrc file name.
- Added `rl.translatekey()` to translate between key sequence formats (input key, key binding, and friendly key name).
- Added `rl.bracketpromptcodes()` to apply `\1` and `\2` codes as needed by Readline in certain inputrc config variables.
- Document the `CLINK_EXE` global variable which has existed since v1.0.0 but was accidentally undocumented.
**Fixes:**
- Removed superfluous `;39` and/or `;49` from color setting escape codes in some cases.
- Fixed `console.readinput()` repeatedly returning nil after `console.checkinput()` returns true (regression introduced in v1.5.12).
- Fixed loading the `default_inputrc` file if it exists (introduced in v1.3.5, and it never worked properly until now).
- Fixed the `history-size` config variable to be completely ignored (it interfered with Clink's history database and settings, which were meant to supersede it).
- Fixed the `clink-popup-show-help` command when including unbound commands (numeric argument of 4) so it doesn't double-list the bound `luafunc:` macros.
- Fixed updating column text in `clink.popuplist()` when Del is pressed (e.g. history timestamps in the `clink-popup-history` command).
- Fixed the width of `clink.popuplist()` to take the title into account.
- Fixed Lua argument errors for some objects (the argument # in the error message was one lower than it should have been in some messages).
- Fixed the return value from `rl_buffer:setcursor()`.
- Fixed `console:getnumlines()` between onendedit and onbeginedit.
- Fixed erasing the "History expansion for" preview when the transient prompt is enabled.
- Fixed the transient prompt sometimes not erasing properly (regression introduced in v1.5.17).
- Fixed the color of flags for `clink set` (e.g. `--help`).
- Fixed the `clink-reload` command so any inputrc file parse errors are printed on new lines.
- Fixed the `lua.break_on_error` setting so it works properly in released builds of Clink.
#### v1.6.0
- Updated the Readline library to v8.2 patch 7 (the list here omits changes that were contributed to Readline from Clink, or which do not affect Clink).
- New features:
- History expansion better understands multiple history expansions that may contain strings that would ordinarily inhibit history expansion (e.g., `abc!$!$`).
- There is a new `fetch-history` bindable command that retrieves the history entry corresponding to its numeric argument. Negative arguments count back from the end of the history.
- There is a new option: `enable-active-region`. This separates control of the active region and bracketed-paste. It has the same default value as `enable-bracketed-paste`, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled. (Note that bracketed paste is currently ignored in Clink.)
- Readline looks in `%LS_COLORS%` for a custom filename extension (`*.readline-colored-completion-prefix`) and uses that as the default color for the common prefix displayed when `colored-completion-prefix` is set, superseding the `so` type if both are present.
- Two new bindable string variables: `active-region-start-color` and `active-region-end-color`. The first sets the color used to display the active region; the second is unused and unnecessary in Clink, but exists anyway for compatibility. If set, these are used in place of terminal standout mode.
- Fixes:
- Fixed a problem with cleaning up active marks.
- Fixed a problem with arithmetic comparison operators checking the version in the inputrc file.
- Fixed a bug that could cause readline to crash if the application removed the callback line handler before readline read all typeahead.
- Added additional checks for read errors in the middle of readline commands.
- Fixed a problem with `unix-filename-rubout` that caused it to delete too much when applied to a pathname consisting only of one or more slashes.
- Fixed a couple problems where `transpose-words` could corrupt the end of the input line.
- Fixed an issue that caused a history line's undo list to be cleared when it should not have been.
- Fixed leaked memory from undo lists.
- When replacing a history entry, make sure the existing entry has a non-NULL timestamp before copying it; it may have been added by the application, not the history library.
- The `blink-matching-paren` setting works in Clink now.
- Completion works for UNC share names now (share names like `\\server\share`, not server names like `\\server`).
- Improved undo grouping for consecutive inserted text.
- Added `os.enumshares()` to enumerate the SMB UNC shares on a given server.
- Fixed Lua error messages from custom Lua libraries that report errors using table objects instead of strings.
- Fixed issue with the `autosuggest.hint` setting where it could apply incorrect input line coloring when the Right key isn't bound to one of the usual commands for that key.
- Internal changes and optimizations.
#### v1.5.18
- Fixed [#524](https://github.com/chrisant996/clink/issues/524) and [#523](https://github.com/chrisant996/clink/issues/523); garbled display in wide terminal windows (regression introduced in v1.5.14, which exacerbated and revealed a bug that's existed since Clink v1.0.0 alpha and which could intermittently garble Unicode text or escape sequences).
- Fixed the transient prompt sometimes not displaying properly (regression introduced in v1.5.17).
#### v1.5.17
- Reduced flicker when async prompt filtering redraws the prompt.
- When `_argmatcher:addarg()` or `_argmatcher:addflags()` is passed a table containing nowordbreakchars="chars" then the chars are not treated as word breaks for that argument index or for flags (see [Overcoming Word Breaks](#addarg_nowordbreakchars) for more information).
- Added a `user_data` argument to the custom classifier function for an argmatcher (set via `_argmatcher:setclassifier()`).
- Improved input line coloring for `clink set` so that `color.unexpected` is only used for a completed word that isn't a match.
- Fixed reading lines from stdin in Lua scripts (e.g. `io.stdin:read()`).
- Fixed accidentally showing matches in a single column sometimes even when there are no descriptions.
- Fixed an incomplete `clink inject` if an explicit or implicit `endlocal` happens after `clink inject` but before the prompt is shown (the injection didn't finish successfully until the next time an environment variable was set, but now it finishes immediately).
#### v1.5.16
- Fixed [#522](https://github.com/chrisant996/clink/issues/522); garbled display in JetBrains WebStorm terminal (regression introduced in v1.5.15).
- Fixing this required reverting the change that automatically chose a default for `color.suggestion` based on the current console colors.
- Fixed `:chaincommand()` so that generators and classifiers that come after argmatchers in the priority order receive the same `line_state` objects as ones that come before argmatchers in the priority order.
- Fixed `:setdelayinit()` with linked argmatchers; the callback function was only called for registered argmatchers (e.g. `clink.argmatcher("foo"):setdelayinit(func)`) and it wasn't called for linked argmatchers (e.g. `"-x" .. clink.argmatcher():setdelayinit(func)`).
- Fixed the word parser to recognize a single digit as a word when followed by punctuation.
- Fixed `loopchars` for characters like `-` or `*` that are also Lua pattern characters.
#### v1.5.15
- Added localized descriptions for flag completions in `cmd`, `cd`, and `rd`.
- Added partial ability to detect light/dark console color themes:
- Added `console.getcolortable()` which returns a table with the console's current 16 predefined colors. When possible, the table includes a field indicating whether the current console color theme is a light or dark theme.
- At this time, the colors can be accurately retrieved only when using the legacy conhost terminal. When using Windows Terminal, ConEmu, or other ConPty-based terminals there is currently no way to accurately retrieve the colors. Once the [Terminal#10639](https://github.com/microsoft/terminal/issues/10639) issue is fixed then Clink will also detect the background color in these terminal programs.
- Changed the default for `color.suggestion` so that it attempts to detect light themes (bright background colors) when possible, and it attempts to automatically choose a default color for suggestions that is faint but has sufficient contrast to be readable.
- Fixed the `onlink` callback function in `:addflags()` so that the `arg_index` parameter is correctly `0` instead of `1`.
- Fixed the upper bound line number for Lua console line API functions.
- Fixed `console.getlinetext()` when emojis are present.
#### v1.5.14
- Added a visible usage hint for [Auto-Suggestions](#gettingstarted_autosuggest) to help make the feature more discoverable and usable. The usage hint can be hidden by turning off the `autosuggest.hint` setting.
- Added new callback functions that can be assigned to an argument position in the table given to `:addarg()` via `onadvance=` and `onlink=` (see [Responding to Arguments in Argmatchers](#responsive-argmatchers) for more information).
- Fixed displaying match descriptions containing embedded color codes.
- Fixed finding argmatchers for doskey alias names containing quotes.
- Fixed parsing the input line when a doskey alias references a command with an argmatcher that uses the `:chaincommand()` function (e.g. an alias `foo=sudo dir $*` with an argmatcher like `clink.argmatcher("sudo"):chaincommand()` so that completions and input line coloring work properly for the rest of the input line).
- Fixed the `exec.commands` setting with an argmatcher that uses the `:chaincommand()` function.
- Fixed `_argmatcher:setclassifier()` so the custom classifier is called for flags as well as for arguments.
#### v1.5.13
- Added `clink.onhistory()` to register a function to be called when the input line has been accepted and is about to be added to history (and optionally cancel adding it).
- Fixed `history delete` with a negative number so it indexes backwards from the end, as advertised.
- Fixed calling `clink.refilterprompt()` from a coroutine, and related fixes to ensure various Lua functions coexist properly with coroutines.
- Fixed [#520](https://github.com/chrisant996/clink/issues/520); add a link to the Releases page in the updater dialog box.
#### v1.5.12
- Fixed updating the input line display after using `clink-popup-history` or `win-popup-history` (regression introduced in v1.5.3; the fix in v1.5.4 was incomplete).
- Fixed `console.checkinput()` so it doesn't eat whatever pending input it detects.
- Fixed the updater to be more specific about what PowerShell cmdlet it invokes, in case a module replaces the built-in `Expand-Archive` cmdlet.
#### v1.5.11
- Fixed prompt filters and other Lua coroutines when `color.executable` and `color.unrecognized` are both empty (regression introduced in v1.5.10).
#### v1.5.10
- Changed `clink update` to consider "up-to-date" as a successful case.
- Fixed a case where the `completion` auto-suggest strategy could be temporarily prevented from providing a suggestion (regression introduced in v1.4.22).
- Fixed leaked memory when showing history expansion previews.
- Fixed [#511](https://github.com/chrisant996/clink/issues/511); `!` doesn't need to be treated as a word break character.
- Internal changes.
#### v1.5.9
- Added default key binding Alt-Ctrl-Up for `clink-popup-history`.
- Fixed the `match.max_rows` setting to control the number of rows of items (instead of the total number of rows including description rows).
- Fixed [#509](https://github.com/chrisant996/clink/issues/509); crash when using `clink-popup-history` if `history.time_stamp` is `off` (regression introduced in v1.5.7).
#### v1.5.8
- Fixed [#504](https://github.com/chrisant996/clink/issues/504); the `clink.autoupdate` setting behaves like `auto` even when it's set to `check` (regression introduced in v1.5.5).
- Fixed [#503](https://github.com/chrisant996/clink/issues/503); the updater could hang if any additional CMD instances were started while the "Clink Update" prompt window was open (regression introduced in v1.5.5).
#### v1.5.7
- Added vertical scrollbars in `clink-select-complete` and in popup lists.
- Added `terminal.scrollbars` setting which can disable the vertical scrollbars (e.g. according to preference, or if a terminal or font is incompatible with extended Unicode box drawing characters).
- Added `clink set --info` flag.
- Added language-related diagnostic info in `clink info`.
- Added minor optimization when displaying prompt text.
- Added enhancements in the pager used when displaying help or matches; Tab or Space or Y print the next page, D prints the next half-page, Enter prints the next line, N or Q stop printing, and ? shows the available keys in the `-- More --` pager prompt (the enhancements were accidentally lost in v1.1.1-alpha).
- Horizontal scrolling in popup lists works for all columns, if text doesn't fit in the column.
- Fixed crash in `rl.getmatchcolor(match, type)`; when the optional `type` parameter was passed in, the API could crash.
- Fixed [#498](https://github.com/chrisant996/clink/issues/498); when `autosuggest.enable` is False, cycling or searching through history and then pressing Right does nothing (regression introduced in v1.5.4).
- Internal improvements.
#### v1.5.6
- Added `os.getpushddepth()`, which works when `%PROMPT%` contains exactly one `$+`.
- The `clink-popup-history` and `win-history-list` commands show timestamps when `history.time_stamp` is set to `show`.
- Fixed `os.geterrorlevel()` when `cmd /u` was used.
- Fixed word break parsing in the input line when certain Unicode characters are present.
- Fixed Unicode string conversions to disallow translating to "similar" characters (which could be problematic in filenames).
- Fixed a crash in `rl.getkeybindings()` if it's called by a Lua script running inside `clink set`.
- Fixed Lua debugger input if a script error occurs inside `clink set`.
- Fixed a width quirk in `clink-select-complete` where typing to narrow the list to a single item accidentally made the column width at least 3 characters, even if the item was only 1 or 2 characters width.
- Fixed `clink history` to handle escape codes embedded in the `history.time_format` setting.
- Fixed a potential crash after using `remove-history` at the beginning of the history list.
- Fixed [#494](https://github.com/chrisant996/clink/issues/494); Lua error when using `unicode.fromcodepage()` (reported and fixed before the bug was published).
- Fixed [#493](https://github.com/chrisant996/clink/issues/493); `clink-select-complete` displays the selected item incorrectly if both `colored-stats` and `colored-completion-prefix` are `off` (regression introduced in v1.5.5).
#### v1.5.5
- Changed the `clink.autoupdate` setting to allow `off`, `check` (the default), `prompt`, and `auto` for more control over how and when updating happens. When set to `prompt` or `auto` Clink can trigger updates automatically, so you don't need to even run `clink update`.
- Enhanced `debug.log_terminal` to include low level console keyboard and mouse input events.
- Fixed `debug.log_terminal` to capture all input (regression introduced in v1.5.2).
- Fixed slowness during `clink-select-complete` while typing, caused by excessive match generation.
- Fixed selection highlight in `clink-select-complete` when the whole match text has been typed.
- Fixed [#486](https://github.com/chrisant996/clink/issues/486); window title escape code doesn't work properly if it contains emojis or UTF8 content.
- Internal changes.
#### v1.5.4
- Further contrast improvements for default colors to be readable in both Dark and Light terminal themes.
- Added `arginfo` field in `builder:addmatches()` and in match display filtering.
- Auto-suggestions are no longer shown while searching history; it was too distracting and confusing.
- Fixed updating the input line display after using `clink-popup-history` or `win-popup-history` (regression introduced in v1.5.3).
- Fixed `old-menu-complete` and `menu-complete` when there's only one match. The first time it should insert the match, and subsequent times should ding instead of cycling through the same match over and over and requiring an equal number of `undo` to undo.
- Fixed match display filtering to support the `match.substring` setting.
- Fixed match display filtering to support the `files.system` setting.
- Fixed the cursor position if match display filtering happens the first time `clink-select-complete` is used in a session.
- Fixed a case where two `undo` were required to fully undo what `menu-complete` inserted.
- Fixed Esc during incremental history search mode so it cancels the search.
- Fixed input line coloring after `non-incremental-reverse-search-history` or `non-incremental-forward-search-history` finds an exact match for the search text (since v1.1.5).
- Internal changes and optimizations.
#### v1.5.3
- Added `builder:setfullyqualified()` to force completions to be inserted as fully qualified path names.
- Completions for clink set setting_name input use fully qualified path names for input. This helps avoid accidentally setting relative paths in global settings; since the current directory changes frequently, setting relative paths usually leads to unintended consequences.
- Only load a script from a `completions\` directory if the associated command exists in the file system. Also, pass the fully qualified file name as input to the script (in Lua, use `...` to get script arguments, e.g. `local command = ...`).
- `clink info` now reports whether Clink is injected.
- Improve efficiency of updating the input line display. This eliminates some redundant processing in the Readline library and in Clink.
- Fixed input line parsing and coloring when the `doskey.enhanced` setting is off or when doskey macro expansion is suppressed.
- Fixed `line_state:getwordinfo()` to accurately set the `.alias` field when the `doskey.enhanced` setting is off or when doskey macro expansion is suppressed.
- Fixed coloring the command word in the command line when queued keys select and accept a command line from history instantly (it could accidentally continue without applying the appropriate coloring).
- Fixed script error in `clink.filematches(nil)` and `clink.dirmatches(nil)`; they were meant to behave the same as passing an empty string.
#### v1.5.2
- Adjusted the colors in "Use enhanced defaults" to have sufficient contrast to be readable in both Dark and Light terminal themes.
- More reliably detect whether hosted in Windows Terminal, and even when Windows Terminal is set as the default terminal application.
- Fixed crash in `clink.popuplist()` when the `current` argument is past the end of the list of items.
- Fixed cursor location when the input line contains embedded CTRL characters.
- Fixed [#474](https://github.com/chrisant996/clink/issues/474); pasting is slow in Windows Terminal and ConEmu.
- Fixed [#470](https://github.com/chrisant996/clink/issues/470); typo in help text.
#### v1.5.1
- Added `rl.getcommandbindings()` to get info about a command, including the key(s) bound to it, if any.
- Changed to also allow `clink.popuplist()` inside a function registered by `clink.onfiltermatches()`.
- Changed console input mode handling to more aggressively clear `ENABLE_VIRTUAL_TERMINAL_INPUT` since it interferes with input (especially Ctrl key combinations) and some console programs set it but accidentally neglect to clear it when they're finished.
#### v1.5.0
- Added code-signing.
- Added note after successful `clink update` to clarify that the update will take effect in new Clink windows.
- Fixed order of running the autostart script (from the `clink.autostart` setting) vs loading Lua; the autostart script should run before Lua so that Lua scripts can query environment variables set by it. Otherwise Lua scripts may behave differently on initial load versus after invoking the `clink-reload` command (e.g. Ctrl-X,Ctrl-R).
- Fixed precedence of match colors; readonly should be lower precedence than executable.
- Fixed [#469](https://github.com/chrisant996/clink/issues/469); incorrect usage of `memset()`.
================================================
FILE: extras/clink/LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. > { profile: FullyDefined
save?: () => void } export abstract class ProfileProvider
{ id: string name: string settingsComponent?: new (...args: any[]) => ProfileSettingsComponent
>
configDefaults: Pick ): string|null {
return null
}
abstract getDescription (profile: PartialProfile ): string
deleteProfile (profile: P): void { }
}
export abstract class ConnectableProfileProvider extends ProfileProvider {}
export abstract class QuickConnectProfileProvider extends ConnectableProfileProvider {
abstract quickConnect (query: string): PartialProfile |null
abstract intoQuickConnectString (profile: P): string|null
}
================================================
FILE: tabby-core/src/api/selector.ts
================================================
export interface SelectorOption