ctrl+f12 toggles debug mode

box-drawing
Ondřej Hruška 7 years ago
parent e098ceb6ea
commit 4ee85af4f4
  1. 5
      js/term_input.js

@ -219,6 +219,11 @@ module.exports = function (conn, screen) {
// copy to clipboard
'Control+Shift+C' () {
screen.copySelectionToClipboard()
},
// toggle debug mode
'Control+F12' () {
screen.window.debug ^= 1
}
/* eslint-enable key-spacing */
}

Loading…
Cancel
Save