dotfiles/wezterm/config/events.lua

13 lines
255 B
Lua
Raw Normal View History

2023-03-22 11:20:01 +00:00
local module = {}
local wezterm = require("wezterm")
wezterm.on("update-right-status", function(window, pane)
local key = window:active_key_table()
if key then
key = "TABLE: " .. key
end
window:set_right_status(key or "")
end)
return module