xiota left a comment (geany/geany-plugins#1471)
Looks good to merge. Tested with
[examples/work/01.edit-test-script.lua](https://github.com/geany/geany-plugins/blob/master/geanylua/examples/work/01.edit-test-script.lua)
and following script:
```lua
local files={}
for file in geany.documents()
do
table.insert(files,file)
end
if ( #files > 0 )
then
file=geany.choose("Choose a tab to activate:", files)
if (file)
then
geany.save(file)
geany.activate(file)
end
else
geany.message("No files!")
end
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1471#issuecomment-3490084094
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1471/[email protected]>