tabby/tabby-ssh/src/config.ts
2023-01-27 23:14:29 +01:00

24 lines
560 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,
knownHosts: [],
verifyHostKeys: true,
clearServiceMessagesOnConnect: true,
},
hotkeys: {
'restart-ssh-session': [],
'launch-winscp': [],
},
}
platformDefaults = { }
}