Gurinder Hans

Results 12 comments of Gurinder Hans

I am able to upload the zipped file and get a media id back, however if I use that mediaID to send the snap it will not send and throw...

Could this possibly be related? https://github.com/rprichard/winpty/issues/96

Hey thanks for responding! I'm trying to find out how the default **"Bash on Ubuntu on Windows"** does this however. For example if I enter `vim` and enable mouse mode...

Hmm, I was going through the source code and saw this (https://github.com/rprichard/winpty/blob/master/src/agent/ConsoleInput.cc#L526), clearly there's support for mouse events, but it doesn't seem to be working for some reason?

Yep, can personally confirm that vim scrolling inside ConEmu does not work.

Also calling `winpty_config_set_mouse_mode(agentCfg, WINPTY_MOUSE_MODE_FORCE);` has no effect. Tried the other modes as well.

so, I noticed I can type `echo -e "\e[?1049h"` and `echo -e "\e[?1049l"`, enter / exit alternate terminal screen mode. I also found that `vim`/`less` scroll works by sending `Ctrl...

This happens with even a regular ~10KB png file.

I went in and started logging bytes written vs read and those things. All those seem fine however my png file that is `7118` bytes only gets uploaded up-to `4520`...

Seems like calling `[request stop];` in the condition `(bytesRead == 0)` causes this issue, as this closes the stream but all of the data still hasn't been uploaded yet. Why...