-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
term: remove duplicate flag and add comment on windows #14
base: master
Are you sure you want to change the base?
Conversation
Both `windows.ENABLE_PROCESSED_INPUT` and `windows.ENABLE_PROCESSED_OUTPUT` have the same value of `0x1`. Using `makeRaw` on a console output screen buffer handle wouldn't make sense since on Windows the input handle and the output screen buffer handle are two separate things. See https://learn.microsoft.com/en-us/windows/console/setconsolemode
This PR (HEAD: 43baa50) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/term/+/562779. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Message from Ayman Bagabas: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Message from qiulaidongfeng: Patch Set 1: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Message from Go LUCI: Patch Set 1: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-02-10T02:10:30Z","revision":"5427808fd47b76da35c339fe2923f464db721b45"} Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Message from qiulaidongfeng: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Message from Go LUCI: Patch Set 1: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/562779. |
Both
windows.ENABLE_PROCESSED_INPUT
andwindows.ENABLE_PROCESSED_OUTPUT
have the same value of0x1
. UsingmakeRaw
on a console output screen buffer handle wouldn't make sense since on Windows the input handle and the output screen buffer handle are two separate things.See https://learn.microsoft.com/en-us/windows/console/setconsolemode