Support Ctrl-. to compile for v1 compabitility

This commit is contained in:
James Allen 2018-05-03 12:28:14 +01:00
parent 09486f2eea
commit 8ecd073efc

View file

@ -112,13 +112,21 @@ define [
# Prevert Ctrl|Cmd-S from triggering save dialog
scope.$watch "onSave", (callback) ->
if callback?
Vim.defineEx 'write', 'w', callback
editor.commands.addCommand
name: "save",
bindKey: win: "Ctrl-S", mac: "Command-S"
exec: () ->
callback()
readOnly: true
Vim.defineEx 'write', 'w', callback
# Not technically 'save', but Ctrl-. recompiles in OL v1
# so maintain compatibility
editor.commands.addCommand
name: "recompile_v1",
bindKey: win: "Ctrl-.", mac: "Ctrl-."
exec: () ->
callback()
readOnly: true
editor.commands.removeCommand "transposeletters"
editor.commands.removeCommand "showSettingsMenu"
editor.commands.removeCommand "foldall"