Skip to content

Commit

Permalink
fix(installer): disable line wrapping for option's windows (#125)
Browse files Browse the repository at this point in the history
* fix(installer): option `false` overflows the buffer width in insert mode

* fix(installer): disable line wrapping for option's windows
  • Loading branch information
NStefan002 authored Jan 27, 2024
1 parent 14578d0 commit 298e10a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion installer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Once you start editing a value, you may exit it by pressing Enter or by clicking
Rocks installation path: [install_path:50:{{vim.fs.joinpath(vim.fn.stdpath('data'), "rocks")}}]
Should rocks.nvim set up luarocks?: [setup_luarocks:5:{{true}}]
Should rocks.nvim set up luarocks?: [setup_luarocks:6:{{true }}]
It is highly recommended that you allow rocks.nvim to set up luarocks for you.
< OK >
Expand Down Expand Up @@ -276,6 +276,7 @@ local function install()
win = window,
bufpos = { i - 1, start - 1 },
})
vim.wo[win_id].wrap = false

input_fields[name] = {
window = win_id,
Expand Down

0 comments on commit 298e10a

Please sign in to comment.