FIX line break bug

pull/1/head
serapath 7 years ago
parent b7dc1e95f4
commit 494187bea0
  1. 2
      src/app/panels/terminal.js

@ -415,7 +415,7 @@ class Terminal {
var script = self._view.input.innerText.trim()
self._view.input.innerText = '\n'
if (script.length) {
self._cmdHistory.push('\n' + script)
self._cmdHistory.push(script)
self.commands.script(script)
}
}

Loading…
Cancel
Save