From 9c99f54d2c409505311b98b7727a33b774cd27c5 Mon Sep 17 00:00:00 2001 From: Georgi Kirilov <> Date: Sat, 31 Oct 2020 11:50:54 +0200 Subject: [PATCH] expose the fmt submodule (for configuration) --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 64cff0a..29b1d48 100644 --- a/init.lua +++ b/init.lua @@ -14,7 +14,7 @@ local function init(dialect, read, write, delete, eol_at, bol_at) local w = walker.new(p, eol_at, bol_at) local e = edit.new(p, w, f, write, delete, eol_at) local i = input.new(p, d1, D2, w, e, write, eol_at, bol_at) - return {parser = p, walker = w, input = i, edit = e} + return {parser = p, walker = w, input = i, edit = e, fmt = f} end return {init, supported} -- 2.11.4.GIT