-
Notifications
You must be signed in to change notification settings - Fork 127
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
Provide config option to disable showing line numbers #881
Comments
Initial inspection using Sourcegraph shows this will likely require updating This would be in addition to adding in the new option. Looks like line numbers are currently tied into the current test stack quite a bit. It might be possible to remove this dependency but the changes would need to be careful to properly handle the cases above, and we would also potentially need to make sure callers of those functions update their function calls if we change the parameters of any of these calls. |
Do you want to remove "current line" marker too? |
Could you write the current output and expected output with small code? |
Your proposal
Provide a config option to disable showing line numbers.
Example:
config set show_line_numbers true
shows line numbers (the default)config set show_line_numbers false
hides line numbers (likepry
's@ -n
)Additional context
This is particularly useful when copying code from the debug session.
The text was updated successfully, but these errors were encountered: