Automatically reload style when saving the project user module

This commit is contained in:
Francesco Abbate
2020-12-10 17:56:53 +01:00
parent 6409b67ea2
commit 9114148b45
6 changed files with 72 additions and 19 deletions
+24 -3
View File
@@ -102,7 +102,15 @@ command.add(nil, {
end,
["core:open-user-module"] = function()
core.root_view:open_doc(core.open_doc(USERDIR .. "/init.lua"))
local user_module_doc = core.open_doc(USERDIR .. "/init.lua")
if not user_module_doc then return end
local doc_save = user_module_doc.save
user_module_doc.save = function(self)
doc_save(self)
core.reload_module("core.style")
core.load_user_directory()
end
core.root_view:open_doc(user_module_doc)
end,
["core:open-project-module"] = function()
@@ -116,8 +124,8 @@ command.add(nil, {
end
end,
["core:open-folder"] = function()
core.command_view:enter("Open Folder", function(text)
["core:change-project-folder"] = function()
core.command_view:enter("Change Project Folder", function(text)
local path_stat = system.get_file_info(text)
if not path_stat or path_stat.type ~= 'dir' then
core.error("Cannot open folder %q", text)
@@ -130,4 +138,17 @@ command.add(nil, {
return text == "" and core.recent_projects or common.dir_path_suggest(text)
end)
end,
["core:open-project-folder"] = function()
core.command_view:enter("Open Project", function(text)
local path_stat = system.get_file_info(text)
if not path_stat or path_stat.type ~= 'dir' then
core.error("Cannot open folder %q", text)
return
end
system.exec(string.format("%q %q", EXEFILE, text))
end, function(text)
return text == "" and core.recent_projects or common.dir_path_suggest(text)
end)
end,
})