You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have my Git pager set to pager = delta --side-by-side --width $(expr ${COLUMNS} - 10) --wrap-max-lines unlimited.
The newest version of Forgit no longer allows variables to be used - it will just display error: unexpected argument '10)' found.
If I set it to --width ${COLUMNS}, it tells me Invalid value for width: "${COLUMNS}" is not an integer
Bpyassing Forgit and just calling git diff shows everything as I would expect.
The text was updated successfully, but these errors were encountered:
Can reproduce and found the issue. I've created #381 to start a discussion on how to solve this with more details. This does not work for the the enter commands though (e.g. pressing enter in gd or gss to view a single file/stash) with the pager configuration provided, but this wasn't working before the last release, so I would argue this to be out of scope - at least for now.
Check list
Environment info
Problem / Steps to reproduce
I have my Git pager set to
pager = delta --side-by-side --width $(expr ${COLUMNS} - 10) --wrap-max-lines unlimited
.The newest version of Forgit no longer allows variables to be used - it will just display
error: unexpected argument '10)' found
.If I set it to
--width ${COLUMNS}
, it tells meInvalid value for width: "${COLUMNS}" is not an integer
Bpyassing Forgit and just calling
git diff
shows everything as I would expect.The text was updated successfully, but these errors were encountered: