wezterm: remove dead code

This commit is contained in:
Gabriel Arazas 2023-09-06 06:55:52 +08:00
parent d294412dd2
commit b479c947ee
2 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
-- A local jumpstart for creating my base configuration. -- A local jumpstart for creating my base configuration.
local module = {} local module = {}
local wezterm = require("wezterm")
function module.apply_to_config(config) function module.apply_to_config(config)
-- Quick select-related options. Quite similar to Kitty hints which is -- Quick select-related options. Quite similar to Kitty hints which is
-- nice. -- nice.

View File

@ -3,7 +3,7 @@ local wezterm = require("wezterm")
local io = require("io") local io = require("io")
local os = require("os") local os = require("os")
wezterm.on("update-right-status", function(window, pane) wezterm.on("update-right-status", function(window, _)
local key = window:active_key_table() local key = window:active_key_table()
if key then if key then
key = "TABLE: " .. key key = "TABLE: " .. key