Commit ad9c7154 authored by Shei's avatar Shei

removing the cmd-l functionality that clobbers with browser shortcut

parent 40493bec
......@@ -99,8 +99,12 @@ class Editor {
this.editor = ace.edit(el)
ace.acequire('ace/ext/language_tools')
// Unmap ctrl-t & ctrl-f
this.editor.commands.bindKeys({ 'ctrl-t': null })
// Unmap ctrl-t & ctrl-f & ctrl-l & cmd-l
this.editor.commands.bindKeys({
'ctrl-t': null,
'ctrl-L': null,
'Command-L': null
})
// shortcuts for "Ctrl-"" and "Ctrl+"" to increase/decrease font size of the editor
this.editor.commands.addCommand({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment