This commit is contained in:
2024-02-18 11:01:19 +01:00
commit c784a74fe3
2 changed files with 23 additions and 0 deletions

9
lua/sourcer/init.lua Normal file
View File

@@ -0,0 +1,9 @@
local M = {}
function M.lookup()
local keywords = vim.fn.getreg("")
print("Hallo Welt! " .. keywords)
end
return M