3
0
mirror of https://github.com/britzl/monarch.git synced 2025-11-27 03:10:54 +01:00

Compare commits

...

1 Commits
3.2.1 ... 3.2.2

Author SHA1 Message Date
Brian
03baa3eeb3 Only allow editor script to target .gui (#67)
* Only allow editor script to target .gui

Disable .collection and .gui_script

* whitespace
2020-11-23 08:32:12 +01:00

View File

@@ -68,7 +68,7 @@ function M.get_commands()
}, },
active = function(opts) active = function(opts)
local path = editor.get(opts.selection, "path") local path = editor.get(opts.selection, "path")
return ends_with(path, ".gui") or ends_with(path, ".collection") or ends_with(path, ".gui_script") return ends_with(path, ".gui")
end, end,
run = function(opts) run = function(opts)
create_files(opts.selection) create_files(opts.selection)