-
Notifications
You must be signed in to change notification settings - Fork 10
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
Scrollbar on fixed column #4
Comments
@YodaEmbedding, thanks for the idea! This is now implemented (23fdffb). After updating the plugin, the The following settings correspond to the example you gave ("scrollbar to always appear on a fixed column, e.g. at 80 characters").
|
Using Perhaps better is autocmd FileType python let b:scrollview_column=79 | let b:scrollview_base = 'buffer'
autocmd FileType rust let b:scrollview_column=80 | let b:scrollview_base = 'buffer' An alternative method of configuration is to depend on the buffer's let g:scrollview_column = 'colorcolumn' " default ...though with multi-colorcolumns, the correct choice is undefined -- and requires manual control with |
In addition to the existing global configuration. (Issue #4)
@YodaEmbedding, thanks again! I hadn't considered that. It's now possible to configure For example, |
Is it possible to configure the scrollbar to always appear on a fixed column, e.g. at 80 characters?
This should occur regardless of how wide the window is.
The text was updated successfully, but these errors were encountered: