We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9741d3 commit c80226dCopy full SHA for c80226d
1 file changed
luasrc/actions/scripts/llist_scripts.lua
@@ -4,16 +4,17 @@ private_vibescript.list_scripts = function(config_json)
4
5
for i =1 , #config_json.scripts do
6
local current_script = config_json.scripts[i]
7
-
8
- if start_filtrage then
+ local print_script = false
+ if start_filtrage then
9
if dtw.starts_with(current_script.name, start_filtrage) then
10
- print(current_script.name)
+ print_script = true
11
end
12
13
14
- if not start_filtrage then
15
+ if not start_filtrage then
16
17
+ if print_script then
+ print(i..":"..current_script.name)
18
+ end
19
20
0 commit comments