mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
13 lines
255 B
Lua
13 lines
255 B
Lua
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
|