Rename Keymap::loadUserKeymaps to Keymap::loadUserKeymap

This commit is contained in:
probablycorey 2013-10-28 09:19:23 -07:00
parent 95107052d0
commit cde0fae1f3
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ class Keymap
@loadDirectory(config.bundledKeymapsDirPath)
@emit('bundled-keymaps-loaded')
loadUserKeymaps: ->
loadUserKeymap: ->
userKeymapPath = CSON.resolve(path.join(config.configDirPath, 'keymap'))
@load(userKeymapPath) if userKeymapPath

View File

@ -53,7 +53,7 @@ window.startEditorWindow = ->
atom.packages.loadPackages()
deserializeEditorWindow()
atom.packages.activate()
atom.keymap.loadUserKeymaps()
atom.keymap.loadUserKeymap()
atom.requireUserInitScript()
atom.menu.update()
$(window).on 'unload', ->