Browse Source

If you select text and do ctrl-c browser copies the selection to clipboard. ctrl-shift-v is for paste.

pull/13/head
Krishna Srinivas 10 years ago
parent
commit
da3a0d157a
  1. 3
      public/wetty/hterm.js

3
public/wetty/hterm.js

@ -6954,7 +6954,8 @@ hterm.Terminal.prototype.onPaste_ = function(e) {
* React when the user tries to copy from the scrollPort.
*/
hterm.Terminal.prototype.onCopy_ = function(e) {
e.preventDefault();
/* comment this line so that browser copies the selection */
// e.preventDefault();
setTimeout(this.copySelectionToClipboard.bind(this), 0);
};

Loading…
Cancel
Save