Christopher Jeffrey (JJ)

Results 182 comments of Christopher Jeffrey (JJ)

"Copy Address" only works on a local machine (it needs access to xsel/xclip/pbcopy). I see what you mean though. Xterm has the same problem (text selection dies with mouse events...

I don't know the win32 api. Does windows have anything like a tty subsystem? Even if it did, I don't think the windows console is a terminal emulator, so a...

> That said, cmd.exe does in fact speak something similar to VT100. If that's true, I would love to implement support for it. I just don't know enough about the...

Are you using chrome? Unfortunately, ctrl-n is unbindable on chrome: https://code.google.com/p/chromium/issues/detail?id=33056 However, you said option-n (not command-n) which should be equivalent to alt-n, so I'm really not sure. Maybe it's...

Is it only alt-n that is not working? The alt+ code resides here, and it includes `n`: https://github.com/chjj/term.js/blob/master/src/term.js#L2598 This means that if any other alt combination works, `n` should work....

Now I'm confused. The isMac and ev.metaKey check is there to check for a mac's equivalent of Alt (which is Option, I think?). Why would that if statement affect the...

Ah, okay. So command is considered meta (seriously unfamiliar with mac keyboards). Gotcha. Yeah, I'll add a better check that won't disrupt any other key combinations either. Thanks for checking.

Could you tell me which browser and OS you're using? I've never run into this focus issue.

Windows is technically supported through winpty, but I personally don't maintain the windows aspect of pty.js. Did it build okay? I recommend running the pty.js tests and see what output...

@jfinstrom, this is most likely a different issue. I'll keep it open until I can test on windows.