1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-17 16:07:12 +03:00
This commit is contained in:
Eugene Pankov 2023-03-21 10:36:40 +01:00
parent 0f71618cb8
commit 92513814e4
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
3 changed files with 3 additions and 4 deletions

View File

@ -25,8 +25,8 @@ export const builtinPlugins = [
'tabby-ssh', 'tabby-ssh',
'tabby-serial', 'tabby-serial',
'tabby-telnet', 'tabby-telnet',
'tabby-electron',
'tabby-local', 'tabby-local',
'tabby-electron',
'tabby-plugin-manager', 'tabby-plugin-manager',
'tabby-linkifier', 'tabby-linkifier',
] ]

View File

@ -61,7 +61,7 @@ export class ElectronPTYProxy extends PTYProxy {
return this.id return this.id
} }
getTruePID(): Promise<number> { getTruePID (): Promise<number> {
return this.truePID return this.truePID
} }

View File

@ -4,7 +4,7 @@ import { FormsModule } from '@angular/forms'
import { NgbModule } from '@ng-bootstrap/ng-bootstrap' import { NgbModule } from '@ng-bootstrap/ng-bootstrap'
import { ToastrModule } from 'ngx-toastr' import { ToastrModule } from 'ngx-toastr'
import TabbyCorePlugin, { HostAppService, ToolbarButtonProvider, TabRecoveryProvider, ConfigProvider, HotkeysService, HotkeyProvider, TabContextMenuItemProvider, CLIHandler, ConfigService, ProfileProvider } from 'tabby-core' import TabbyCorePlugin, { HostAppService, ToolbarButtonProvider, TabRecoveryProvider, ConfigProvider, HotkeysService, HotkeyProvider, TabContextMenuItemProvider, CLIHandler, ProfileProvider } from 'tabby-core'
import TabbyTerminalModule from 'tabby-terminal' import TabbyTerminalModule from 'tabby-terminal'
import { SettingsTabProvider } from 'tabby-settings' import { SettingsTabProvider } from 'tabby-settings'
@ -71,7 +71,6 @@ export default class LocalTerminalModule { // eslint-disable-line @typescript-es
hotkeys: HotkeysService, hotkeys: HotkeysService,
terminal: TerminalService, terminal: TerminalService,
hostApp: HostAppService, hostApp: HostAppService,
config: ConfigService,
) { ) {
hotkeys.hotkey$.subscribe(async (hotkey) => { hotkeys.hotkey$.subscribe(async (hotkey) => {
if (hotkey === 'new-tab') { if (hotkey === 'new-tab') {