From d2e5f6f911ce03d17985a2a5e554d81263807181 Mon Sep 17 00:00:00 2001 From: Frank Seifferth Date: Sun, 8 Oct 2023 13:28:44 +0200 Subject: Reintroduce FILE_SAVE_POST hook --- edconf.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/edconf.lua b/edconf.lua index 4965537..7c92f4d 100644 --- a/edconf.lua +++ b/edconf.lua @@ -201,4 +201,8 @@ vis.events.subscribe(vis.events.WIN_OPEN, function (win) ec_set_values(win) end) +vis.events.subscribe(vis.events.FILE_SAVE_POST, function() + ec_set_values(vis.win) +end) + return M -- cgit