fix(keymaps): Reveal keymap.cson rather than opening

This commit is contained in:
Ben Gotow 2015-10-23 12:49:14 -07:00
parent 1ad6c563a4
commit 8393fdbf94

View file

@ -97,6 +97,6 @@ class PreferencesKeymaps extends React.Component
return keystrokes.replace(/-/gi,'').replace(/cmd/gi, '⌘').replace(/alt/gi, '⌥').replace(/shift/gi, '⇧').replace(/ctrl/gi, '^').toUpperCase()
_onShowUserKeymaps: =>
require('shell').openItem(atom.keymaps.getUserKeymapPath())
require('shell').showItemInFolder(atom.keymaps.getUserKeymapPath())
module.exports = PreferencesKeymaps