Skif-off left a comment (geany/geany-plugins#1463)
@advice2020,
I'll try briefly :) Input dialog to prompt your number:
```lua
local sNum = geany.input("Value:", 10)
if sNum == nil then return nil end
local iNum = tonumber(sNum, 10)
if iNum == nil then return nil end
```
`iNum` is the number you need. Comment out or delete these four lines and
replace all `iNum` below with 10. Or just add
```lua
local iNum = 10
```
below, it will be easier and more convenient.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1463#issuecomment-3089138304
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1463/[email protected]>