···36363737```lua
3838require('multinput').setup({
3939- opts = {
4040- numbers = "multiline", -- "always" | "multiline" | "never"
4141- -- "always" will always show line numbers
4242- -- "multiline" will only show line numbers if the buffer's height is > 1
4343- -- "never" will never show line numbers
4444- },
4545- padding = 5, -- How much padding will be added to the end of the buffer
4646- width = { min = 20, max = 60 }, -- Controls the width limits of the buffer
4747- height = { min = 1, max = 6 }, -- Controls the height limits of the buffer
3939+ opts = {
4040+ -- "always" | "multiline" | "never"
4141+ -- "always" will always show line numbers
4242+ -- "multiline" will only show line numbers if the buffer's height is > 1
4343+ -- "never" will never show line numbers
4444+ numbers = "never",
4545+ },
4646+ -- How much padding will be added to the end of the buffer
4747+ padding = 5,
4848+ -- Controls the width limits of the buffer
4949+ width = { min = 20, max = 60 },
5050+ -- Controls the height limits of the buffer
5151+ height = { min = 1, max = 6 },
4852 win = {
4953 title = "Input: ",
5054 style = "minimal",
5155 focusable = true,
5256 relative = "cursor",
5357 col = -1,
5858+ width = 1,
5459 height = 1,
5555- },
6060+ },
5661})
5762```
5863
+9-8
doc/multinput.txt
···4949 -- "always" will always show line numbers
5050 -- "multiline" will only show line numbers if the buffer's height is > 1
5151 -- "never" will never show line numbers
5252- numbers = "multiline",
5252+ numbers = "never",
5353 },
5454 -- How much padding will be added to the end of the buffer
5555 padding = 5,
···5757 width = { min = 20, max = 60 },
5858 -- Controls the height limits of the buffer
5959 height = { min = 1, max = 6 },
6060- win = {
6161- title = "Input: ",
6262- style = "minimal",
6363- focusable = true,
6464- relative = "cursor",
6565- col = -1,
6666- height = 1,
6060+ win = {
6161+ title = "Input: ",
6262+ style = "minimal",
6363+ focusable = true,
6464+ relative = "cursor",
6565+ col = -1,
6666+ width = 1,
6767+ height = 1,
6768 },
6869 })
6970<