Merge pull request #13152 from atom/open-empty-editor-description

Add and improve core.*OnStart setting descriptions
This commit is contained in:
Lee Dohm
2016-12-06 11:59:19 -08:00
committed by GitHub

View File

@@ -123,7 +123,12 @@ const configSchema = {
]
},
openEmptyEditorOnStart: {
description: 'Automatically open an empty editor on startup.',
description: 'When checked opens an untitled editor when loading a blank environment (such as with _File > New Window_ or when "Restore Previous Windows On Start" is unchecked); otherwise no editor is opened when loading a blank environment. This setting has no effect when restoring a previous state.',
type: 'boolean',
default: true
},
restorePreviousWindowsOnStart: {
description: 'When checked restores the last state of all Atom windows when started from the icon or `atom` by itself from the command line; otherwise a blank environment is loaded.',
type: 'boolean',
default: true
},