commit | f867b7695b98cb86bbc9568bc1b5a0d015fffbd4 | [log] [tgz] |
---|---|---|
author | Laurent Demailly <ldemailly@gmail.com> | Sat Aug 17 15:33:39 2024 +0000 |
committer | Gopher Robot <gobot@golang.org> | Sat Aug 24 00:22:51 2024 +0000 |
tree | ac382dc291ca7d1b1abdfc30ac3162051ac57751 | |
parent | d59895469ac1327e92a3ee0ecb6dd868315fcd74 [diff] |
x/term: set missing VIRTUAL_TERMINAL_INPUT flag on Windows With this change the arrow keys work with Windows 11 Terminal After verifying https://github.com/containerd/console did work fine, unlike x/term, it's because they have: https://github.com/containerd/console/blob/v1.0.4/console_windows.go#L194 using the same flag fixed x/term for my program Small e2e test reproducing the issue and showing it being fixed can be ran using go run fortio.org/terminal/example@v0.6.0 # has the fix (or @latest) go run fortio.org/terminal/example@v0.5.1 -history .history # does not have working arrow keys/this fix Fixes golang/go#68830 Change-Id: If20addd054c76b889a52f933695467812be72306 GitHub-Last-Rev: 68e3ca0e19d5c5ac1848d8135638c809f593e035 GitHub-Pull-Request: golang/term#17 Reviewed-on: https://go-review.googlesource.com/c/term/+/603960 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Commit-Queue: Ian Lance Taylor <iant@google.com> Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
This repository provides Go terminal and console support packages.
The easiest way to install is to run go get -u golang.org/x/term
. You can also manually git clone the repository to $GOPATH/src/golang.org/x/term
.
This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.
The main issue tracker for the term repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/term:” in the subject line, so it is easy to find.