Closes #936. Add details about opening Command Palette

This commit is contained in:
Glavin Wiechert 2016-05-04 18:32:59 -03:00
parent 9197bc3a3c
commit 6c360a0442
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ plugin.checkUnsupportedOptions = ->
unsupportedOptions = getUnsupportedOptions()
if unsupportedOptions.length isnt 0
atom.notifications.addWarning("Please run Atom command 'Atom-Beautify: Migrate Settings'.", {
detail : "You have unsupported options: #{unsupportedOptions.join(', ')}",
detail : "You can open the Atom command palette with `cmd-shift-p` (OSX) or `ctrl-shift-p` (Linux/Windows) in Atom. You have unsupported options: #{unsupportedOptions.join(', ')}",
dismissable : true
})