-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
git-log's %<|(-1,trunc)
placeholder truncates at column 80, even when tput cols
is available.
#5441
Comments
Git determines terminal width from 3 sources:
|
Indeed. If you compare So the best work-around you can have for now is to prefix the |
Looking at this some more, Git Bash does set (and update) |
Oh, that's a curious finding! It's probably because that variable is not me@work MINGW64 ~
$ echo $COLUMNS
120
me@work MINGW64 ~
$ git -c alias.env='!env' env | grep COLUMNS
me@work MINGW64 ~
$ export COLUMNS
me@work MINGW64 ~
$ git -c alias.env='!env' env | grep COLUMNS
COLUMNS=120 Which means that after calling |
Kinda. Probably addressed with side effects, if I'm reading this thread correctly. It seems to mess up curses and ioctl/TIOCGWINSZ for msys2 programms (vim and nano come to mind). |
That's a valid point, programs linking to curses will prefer So maybe we should simply recommend running |
It would be nice if there was a solution that wasn't contingent on running git in a bourne-compatible shell. Is it infeasable to just use a native windows API (i.e., GetConsoleScreenBufferInfo, as is used in this stackoverflow answer), to get the terminal size? |
@anabelle2001 the default for Git Bash is to run in MinTTY, i.e. there is not even a Windows Console. And the only way to access the information you're seeking in that MinTTY is to use a program like |
Setup
I am using Windows 11:
defaults?
to the issue you're seeing?
I don't think so.
Details
Shells: CMD, Powershell, Bash
Terminal Emulators: VSCode integrated terminal, Windows Terminal (WT.exe)
Locally, i can reproduce the issue on all permutations of the above shells / terminal emulators. The issue does not appear when using WSL.
Minimal, Complete, and Verifiable example
this will help us understand the issue.
In a git repository with some long commit messages, run
Example output:
WSL version of git, where the command runs correctly:
The text was updated successfully, but these errors were encountered: