blob: b1f3244200e9213cdbeb8ab50e714569091676de (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- mod-version:3
require 'plugins.treeview' -- load after treeview
local command = require 'core.command'
local close = true
for _, v in ipairs(ARGS) do
local info = system.get_file_info(v)
if info and info.type == "dir" then close = false; break end
end
if close then command.perform "treeview:toggle" end
|