tabby/tabby-ssh/src/config.ts
2021-10-24 22:34:59 +02:00

21 lines
449 B
TypeScript

import { ConfigProvider } from 'tabby-core'
/** @hidden */
export class SSHConfigProvider extends ConfigProvider {
defaults = {
ssh: {
warnOnClose: false,
winSCPPath: null,
agentType: 'auto',
agentPath: null,
x11Display: null,
},
hotkeys: {
'restart-ssh-session': [],
'launch-winscp': [],
},
}
platformDefaults = { }
}