Skip to content

wezterm.has_action(NAME)

Since: Version 20230408-112425-69ae8472

The functionality described in this section requires version 20230408-112425-69ae8472 of wezterm, or a more recent version.

Returns true if the string NAME is a valid key assignment action variant that can be used with wezterm.action.

This is useful when you want to use a wezterm configuration across multiple different versions of wezterm.

if wezterm.has_action 'PromptInputLine' then
  table.insert(config.keys, {
    key = 'p',
    mods = 'LEADER',
    action = wezterm.action.PromptInputLine {
      -- other parameters here
    },
  })
end