very basic window movement bound to alt-left

This commit is contained in:
Harrison DiAmbrosio 2025-10-24 17:24:41 -04:00
parent 17cdbae175
commit 36b89b04d0
4 changed files with 47 additions and 20 deletions

View file

@ -11,6 +11,6 @@ mez.path.config = mez.fs.joinpath(env_conf, "mez", "init.lua")
package.path = package.path..";"..mez.fs.joinpath(env_conf, "mez", "lua", "?.lua")
-- this is an example
-- mez.api.add_keymap("ctrl", "a", function()
-- print("hello from my keymap")
-- end)
mez.api.add_keymap("alt", "a", function()
print("hello from my keymap")
end)