2023-10-18 21:03:16 +00:00
|
|
|
-- create the required tables under `std`
|
|
|
|
trinitrix.std = {keymaps = {}};
|
|
|
|
|
2023-10-16 12:04:03 +00:00
|
|
|
--- Add a new keymap. This is just a convenience function which registers the function
|
2023-10-18 21:03:16 +00:00
|
|
|
--- and at the same time deals with the fact that the whole trinitrix api is async.
|
2023-10-16 12:04:03 +00:00
|
|
|
---@param mode string
|
|
|
|
---@param key string
|
|
|
|
---@param callback function
|
|
|
|
trinitrix.std.keymaps.add = function(mode, key, callback)
|
|
|
|
local callback_key = trinitrix.api.register_function(function()
|
|
|
|
local co = coroutine.create(callback)
|
|
|
|
while coroutine.status(co) ~= "dead" do
|
|
|
|
coroutine.resume(co)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
trinitrix.api.keymaps.add(mode, key, callback_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trinitrix.std.keymaps.add("ci", "<ESC>", trinitrix.api.ui.set_mode_normal)
|
|
|
|
|
|
|
|
trinitrix.std.keymaps.add("n", ":", trinitrix.api.ui.command_line_show)
|
|
|
|
trinitrix.std.keymaps.add("n", "i", trinitrix.api.ui.set_mode_insert)
|
2023-10-19 18:04:27 +00:00
|
|
|
trinitrix.std.keymaps.add("n", "<TAB>", trinitrix.api.ui.cycle_planes)
|
2023-10-16 12:04:03 +00:00
|
|
|
|
|
|
|
-- a simple test to prove that key chords work
|
2023-10-18 21:10:44 +00:00
|
|
|
trinitrix.std.keymaps.add("ni", "jj", function() print("hi") end)
|
2023-10-16 12:04:03 +00:00
|
|
|
|
|
|
|
trinitrix.std.keymaps.add("n", "q", trinitrix.api.exit)
|