Files
nvim-macrotool/lua/macrotool/init.lua
2024-12-18 10:15:08 +01:00

13 lines
158 B
Lua

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