Skip to content

wakterm.has_action(NAME)

Since: Version 20230408-112425-69ae8472

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

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

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

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