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
I noticed that the output of asyncrun is limited to 80 columns. The following python code determines my current terminal width:
$ python -c 'import shutil; print(shutil.get_terminal_size())' os.terminal_size(columns=184, lines=52)
But when run with nvim/asyncrun.vim I only get 80 columns:
:AsyncRun python -c 'import shutil; print(shutil.get_terminal_size())' || [python -c 'import shutil; print(shutil.get_terminal_size())'] || os.terminal_size(columns=80, lines=24) || [Finished in 1 seconds]
It could be sth with my setup, but I don't know how to debug/fix this. Or is this a known issue ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed that the output of asyncrun is limited to 80 columns.
The following python code determines my current terminal width:
But when run with nvim/asyncrun.vim I only get 80 columns:
It could be sth with my setup, but I don't know how to debug/fix this. Or is this a known issue ?
The text was updated successfully, but these errors were encountered: