mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-10 22:50:04 +00:00
23 lines
511 B
TypeScript
23 lines
511 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,
|
|
},
|
|
hotkeys: {
|
|
'restart-ssh-session': [],
|
|
'launch-winscp': [],
|
|
},
|
|
}
|
|
|
|
platformDefaults = { }
|
|
}
|