Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/term
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.33.0
Choose a base ref
...
head repository: golang/term
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.34.0
Choose a head ref
  • 3 commits
  • 5 files changed
  • 3 contributors

Commits on Jul 15, 2025

  1. term: remove duplicate flag and add comment on windows

    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
    
    Change-Id: I19feadf8da303a1ada8e517399416a4730845900
    GitHub-Last-Rev: 832fc7e
    GitHub-Pull-Request: #14
    Reviewed-on: https://go-review.googlesource.com/c/term/+/562779
    Reviewed-by: Michael Pratt <mpratt@google.com>
    Reviewed-by: Laurent Demailly <ldemailly@gmail.com>
    Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    aymanbagabas authored and prattmic committed Jul 15, 2025
    Configuration menu
    Copy the full SHA
    27f29d8 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2025

  1. term: allow multi-line bracketed paste to not create single line with…

    … verbatim LFs
    
    Treat "\n" (LF) like "Enter" (CR)
    
    Avoids that when pasting 3 lines
    (with a terminal like kitty, ghostty, alacritty that do not change the clipboard
    in bracketed paste mode)
    it turns into 1 prompt looking like:
    
    Test> line one
    ..............line.two
    ......................line.three
    
    Fixes golang/go#74600
    
    Change-Id: I4a86044a4a175eccb3a96dbf7021fee97a5940ce
    GitHub-Last-Rev: 0cf26df
    GitHub-Pull-Request: #21
    Reviewed-on: https://go-review.googlesource.com/c/term/+/687755
    Reviewed-by: Michael Pratt <mpratt@google.com>
    Reviewed-by: Michael Knyszek <mknyszek@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    ldemailly authored and prattmic committed Jul 21, 2025
    Configuration menu
    Copy the full SHA
    4f53e0c View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2025

  1. go.mod: update golang.org/x dependencies

    Update golang.org/x dependencies to their latest tagged versions.
    
    Change-Id: I99ad2113f2fb7d1f8e22475659335424ff94ffb7
    Reviewed-on: https://go-review.googlesource.com/c/term/+/693976
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: David Chase <drchase@google.com>
    Auto-Submit: Gopher Robot <gobot@golang.org>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    gopherbot committed Aug 7, 2025
    Configuration menu
    Copy the full SHA
    a35244d View commit details
    Browse the repository at this point in the history
Loading