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
sidescrolloff
Describe the bug when you have a higher sidescrolloff value, this leads DressingInput to not using the entire width of the input window.
for the DressingInput window, sidescrolloff should be disabled or set to 0.
To Reproduce Steps to reproduce the behavior:
vim.opt.sidescrolloff = 30
Additional context this fixed it for me
augroup("dressing", {}) autocmd("FileType", { pattern = "DressingInput", group = "dressing", command = "setlocal sidescrolloff=0", })
The text was updated successfully, but these errors were encountered:
refactor!: expose generic way to set window/buffer options in config (#…
c7eda5a
…75)
I've refactored the config to allow passing in any window options you like. This should work for you now:
require("dressing").setup({ input = { win_options = { sidescrolloff = 0, }, }, })
Sorry, something went wrong.
thanks for the quick fix, works fantastic. 🙂
chore(dressing): update configuration usage
13b2a26
References: stevearc/dressing.nvim#75 Signed-off-by: Fletcher Nichol <[email protected]>
stevearc
No branches or pull requests
Describe the bug
when you have a higher
sidescrolloff
value, this leads DressingInput to not using the entire width of the input window.for the DressingInput window,
sidescrolloff
should be disabled or set to 0.To Reproduce
Steps to reproduce the behavior:
vim.opt.sidescrolloff = 30
Additional context
this fixed it for me
The text was updated successfully, but these errors were encountered: