From 1bb179108440f5b6481e3896c0cf24d8116f9198 Mon Sep 17 00:00:00 2001 From: Shei Date: Tue, 9 Apr 2019 12:13:52 -0700 Subject: [PATCH] removing ctrl-t from the list --- src/app/editor/editor.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/editor/editor.js b/src/app/editor/editor.js index 9304cffd9e..b0123f6a08 100644 --- a/src/app/editor/editor.js +++ b/src/app/editor/editor.js @@ -99,9 +99,8 @@ class Editor { this.editor = ace.edit(el) ace.acequire('ace/ext/language_tools') - // Unmap ctrl-t & ctrl-f & ctrl-l & cmd-l + // Unmap ctrl-l & cmd-l this.editor.commands.bindKeys({ - 'ctrl-t': null, 'ctrl-L': null, 'Command-L': null })