mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-14 00:20:13 +00:00
21 lines
413 B
TypeScript
21 lines
413 B
TypeScript
import { ConfigProvider } from 'terminus-core'
|
|
|
|
/** @hidden */
|
|
export class SSHConfigProvider extends ConfigProvider {
|
|
defaults = {
|
|
ssh: {
|
|
connections: [],
|
|
recentConnections: [],
|
|
warnOnClose: false,
|
|
winSCPPath: null,
|
|
},
|
|
hotkeys: {
|
|
ssh: [
|
|
'Alt-S',
|
|
],
|
|
},
|
|
}
|
|
|
|
platformDefaults = { }
|
|
}
|