This commit is contained in:
2024-12-18 10:15:08 +01:00
commit bcf67d08d7
2 changed files with 24 additions and 0 deletions

12
lua/macrotool/init.lua Normal file
View File

@@ -0,0 +1,12 @@
local M = {}
local api = vim.api
local buf, win
-- Only for debugging
if vim == nil then
vim = {}
end
function Macrochain()
vim.print("Hello World!")
end