pocco81 / true-zen.nvim

🦝 Clean and elegant distraction-free writing for NeoVim
GNU General Public License v3.0
976 stars 28 forks source link

fix: some window local options are stored as numbers instead of booleans #133

Open mrcapivaro opened 2 months ago

mrcapivaro commented 2 months ago

The vim.fn.gettabwinvar() method transformed the value of boolean options into numeric values, meaning that options that held a value of false would now hold the value of 0 in the original_opts table, resulting in the issue #125.

This pr fixes #125.