fix(ui): set wo options with local. don't use vim.wo. See #829

This commit is contained in:
Folke Lemaitre 2023-06-12 08:28:10 +02:00
commit 7f4da7d511
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
3 changed files with 22 additions and 14 deletions

View file

@ -57,12 +57,11 @@ function M.create()
})
if Config.options.ui.wrap then
vim.wo[self.win].wrap = true
vim.wo[self.win].linebreak = true
vim.wo[self.win].breakindent = true
-- vim.wo[self.win].breakindentopt = "shift:8"
Util.wo(self.win, "wrap", true)
Util.wo(self.win, "linebreak", true)
Util.wo(self.win, "breakindent", true)
else
vim.wo[self.win].wrap = false
Util.wo(self.win, "wrap", false)
end
self.state = vim.deepcopy(default_state)