mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
74 lines
2.2 KiB
CoffeeScript
74 lines
2.2 KiB
CoffeeScript
fs = require 'fs-plus'
|
|
path = require 'path'
|
|
KeymapManager = require 'atom-keymap'
|
|
CSON = require 'season'
|
|
|
|
bundledKeymaps = require('../package.json')?._atomKeymaps
|
|
|
|
KeymapManager::onDidLoadBundledKeymaps = (callback) ->
|
|
@emitter.on 'did-load-bundled-keymaps', callback
|
|
|
|
KeymapManager::onDidLoadUserKeymap = (callback) ->
|
|
@emitter.on 'did-load-user-keymap', callback
|
|
|
|
KeymapManager::canLoadBundledKeymapsFromMemory = ->
|
|
bundledKeymaps?
|
|
|
|
KeymapManager::loadBundledKeymaps = ->
|
|
if bundledKeymaps?
|
|
for keymapName, keymap of bundledKeymaps
|
|
keymapPath = "core:#{keymapName}"
|
|
@add(keymapPath, keymap, 0, @devMode ? false)
|
|
else
|
|
keymapsPath = path.join(@resourcePath, 'keymaps')
|
|
@loadKeymap(keymapsPath)
|
|
|
|
@emitter.emit 'did-load-bundled-keymaps'
|
|
|
|
KeymapManager::getUserKeymapPath = ->
|
|
return "" unless @configDirPath?
|
|
|
|
if userKeymapPath = CSON.resolve(path.join(@configDirPath, 'keymap'))
|
|
userKeymapPath
|
|
else
|
|
path.join(@configDirPath, 'keymap.cson')
|
|
|
|
KeymapManager::loadUserKeymap = ->
|
|
userKeymapPath = @getUserKeymapPath()
|
|
return unless fs.isFileSync(userKeymapPath)
|
|
|
|
try
|
|
@loadKeymap(userKeymapPath, watch: true, suppressErrors: true, priority: 100)
|
|
catch error
|
|
if error.message.indexOf('Unable to watch path') > -1
|
|
message = """
|
|
Unable to watch path: `#{path.basename(userKeymapPath)}`. Make sure you
|
|
have permission to read `#{userKeymapPath}`.
|
|
|
|
On linux there are currently problems with watch sizes. See
|
|
[this document][watches] for more info.
|
|
[watches]:https://github.com/atom/atom/blob/master/docs/build-instructions/linux.md#typeerror-unable-to-watch-path
|
|
"""
|
|
@notificationManager.addError(message, {dismissable: true})
|
|
else
|
|
detail = error.path
|
|
stack = error.stack
|
|
@notificationManager.addFatalError(error.message, {detail, stack, dismissable: true})
|
|
|
|
@emitter.emit 'did-load-user-keymap'
|
|
|
|
|
|
KeymapManager::subscribeToFileReadFailure = ->
|
|
@onDidFailToReadFile (error) =>
|
|
userKeymapPath = @getUserKeymapPath()
|
|
message = "Failed to load `#{userKeymapPath}`"
|
|
|
|
detail = if error.location?
|
|
error.stack
|
|
else
|
|
error.message
|
|
|
|
@notificationManager.addError(message, {detail, dismissable: true})
|
|
|
|
module.exports = KeymapManager
|