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
Getting a red vertical line, I assume to encourage lines to be less than a certain number of characters? Any way to turn this off?
The text was updated successfully, but these errors were encountered:
I understand the motivation for the vertical colored line, but I also found it distracting. Here are some options for turning it off:
Use the command:
:set colorcolumn=0
Of course this will only apply to the current session.
For a more permanent solution edit the nextflow-vim/syntax/nextflow.vim file by removing the line "setlocal colorcolumn=80".
Sorry, something went wrong.
You can add
augroup filetype_nextflow autocmd! autocmd FileType nextflow setlocal colorcolumn=0 augroup END
to your vimrc as well.
You can add augroup filetype_nextflow autocmd! autocmd FileType nextflow setlocal colorcolumn=0 augroup END to your vimrc as well.
I came here to solve this issue and your solution worked for me, thank you!
No branches or pull requests
Getting a red vertical line, I assume to encourage lines to be less than a certain number of characters? Any way to turn this off?
The text was updated successfully, but these errors were encountered: