Skip to content

Commit fb25335

Browse files
committed
LuaMacro: make possible invoking macro browser via Plugin.Call
1 parent c809a59 commit fb25335

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

plugins/luamacro/_globalinfo.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function export.GetGlobalInfo()
22
return {
3-
Version = { 3, 0, 0, 899 },
3+
Version = { 3, 0, 0, 900 },
44
MinFarVersion = { 3, 0, 0, 6564 },
55
Guid = win.Uuid("4EBBEFC8-2084-4B7F-94C0-692CE136894D"),
66
Title = "LuaMacro",

plugins/luamacro/changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
shmuel 2025-11-02 12:35:31+02:00 - build 900
2+
3+
1. Make possible invoking macro browser via Plugin.Call(guid,"browser").
4+
15
shmuel 2025-10-26 16:31:48+02:00 - build 899
26

37
1. LuaFAR: refactoring.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#include <farversion.hpp>
22

3-
#define PLUGIN_BUILD 899
3+
#define PLUGIN_BUILD 900

plugins/luamacro/luamacro.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,8 @@ function export.Open (OpenFrom, guid, ...)
522522
return unpack(argtable, 2, argtable.n)
523523
elseif argtable[1]=="macropost" then -- test Mantis # 2222
524524
return far.MacroPost([[far.Message"macropost"]])
525+
elseif argtable[1]=="browser" then
526+
macrobrowser()
525527
end
526528

527529
else -- OPEN_DIALOG, OPEN_EDITOR, OPEN_FILEPANEL, OPEN_LEFTDISKMENU,

0 commit comments

Comments
 (0)