We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
instead of always wrapping at IceCreamDebugger.lineWrapWidth characters, dynamically detect the terminal width with os.get_terminal_size()
IceCreamDebugger.lineWrapWidth
os.get_terminal_size()
os.get_terminal_size() isnt implemented in py2, so os.environ['COLUMNS'] can be read directly as a fallback
os.environ['COLUMNS']
if the terminal width cant be detected, then fall back to IceCreamDebugger.lineWrapWidth
see #89
The text was updated successfully, but these errors were encountered:
Hi @gruns - I raised #110 to see if I could implement this feature, it might need a little work though.
Sorry, something went wrong.
Allow disable line wrap is also nice
I think this is a useful feature since the line wrap could be annoying:
gruns
Successfully merging a pull request may close this issue.
instead of always wrapping at
IceCreamDebugger.lineWrapWidth
characters, dynamically detect the terminal width withos.get_terminal_size()
os.get_terminal_size()
isnt implemented in py2, soos.environ['COLUMNS']
can be read directly as a fallbackif the terminal width cant be detected, then fall back to
IceCreamDebugger.lineWrapWidth
see #89
The text was updated successfully, but these errors were encountered: