mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
parent
c5318659ec
commit
574a542918
1 changed files with 2 additions and 2 deletions
|
@ -500,12 +500,12 @@ const terminalConfiguration: IConfigurationNode = {
|
|||
]
|
||||
},
|
||||
[TerminalSettingId.EnablePersistentSessions]: {
|
||||
description: localize('terminal.integrated.enablePersistentSessions', "Persist terminal sessions for the workspace across window reloads."),
|
||||
description: localize('terminal.integrated.enablePersistentSessions', "Persist terminal sessions/history for the workspace across window reloads."),
|
||||
type: 'boolean',
|
||||
default: true
|
||||
},
|
||||
[TerminalSettingId.PersistentSessionReviveProcess]: {
|
||||
markdownDescription: localize('terminal.integrated.persistentSessionReviveProcess', "When the terminal process must be shutdown (eg. on window or application close), this determines when the previous terminal session contents should be restored and processes be recreated when the workspace is next opened.\n\nCaveats:\n\n- Restoring of the process current working directory depends on whether it is supported by the shell.\n- Time to persist the session during shutdown is limited, so it may be aborted when using high-latency remote connections."),
|
||||
markdownDescription: localize('terminal.integrated.persistentSessionReviveProcess', "When the terminal process must be shutdown (eg. on window or application close), this determines when the previous terminal session contents/history should be restored and processes be recreated when the workspace is next opened.\n\nCaveats:\n\n- Restoring of the process current working directory depends on whether it is supported by the shell.\n- Time to persist the session during shutdown is limited, so it may be aborted when using high-latency remote connections."),
|
||||
type: 'string',
|
||||
enum: ['onExit', 'onExitAndWindowClose', 'never'],
|
||||
markdownEnumDescriptions: [
|
||||
|
|
Loading…
Reference in a new issue