Merge pull request #148 from ethereum/keyboard-shortcuts

Remove ctrl-t and ctrl-f keyboard shortcut
pull/1/head
chriseth 8 years ago committed by GitHub
commit 28ac90a987
  1. 4
      src/app/editor.js

@ -180,6 +180,10 @@ function Editor (loadingFromGist, storage) {
editor.setSession(sessions[SOL_CACHE_FILE]);
editor.resize(true);
// Unmap ctrl-t & ctrl-f
editor.commands.bindKeys({ 'ctrl-t': null });
editor.commands.bindKeys({ 'ctrl-f': null });
}
}

Loading…
Cancel
Save