Replies: 1 comment 9 replies
-
The |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently setting the
autocd
option gives verbose output of the formatcd -- <dir>
Is it possible to provide a toggle optionally to disable this verbose output?
There is a hacky fix around this which is as follows
exec {BASH_XTRACEFD}>/dev/null
to disable verbosityexec {BASH_XTRACEFD}>/dev/stdout
to re-enableBut this workaround works globally and may lead to breakage of other programs.
Maybe this can be done only for the
autocd
feature and thus not break other features.@akinomyoga What is your opinion on this? Would you add this to ble.sh?
Beta Was this translation helpful? Give feedback.
All reactions