Use core/ instead of <embedded> for keymaps loaded during snapshot

This commit is contained in:
Antonio Scandurra 2017-03-20 09:56:40 +01:00
parent 784d5043cf
commit 17611889d3

View File

@ -17,7 +17,7 @@ KeymapManager::canLoadBundledKeymapsFromMemory = ->
KeymapManager::loadBundledKeymaps = ->
if bundledKeymaps?
for keymapName, keymap of bundledKeymaps
keymapPath = "<embedded>/#{keymapName}"
keymapPath = "core/#{keymapName}"
@add(keymapPath, keymap, 0, @devMode ? false)
else
keymapsPath = path.join(@resourcePath, 'keymaps')