Confirmation

On this page
  1. Confirmation
    1. Example of choosing a program with user confirmation

Confirmation#

Activates an overlay to display a confirmation menu

When the user accepts a line, emits an event that allows you to act upon the input.

Confirmation accepts the following fields:

  • message - the text to show for confirmation. You may embed escape sequences and/or use wakterm.format. Defaults to: "🛑 Really continue?".
  • action - event callback registered via wakterm.action_callback. The callback's function signature is (window, pane) where window and pane are the Window and Pane objects from the current pane and window. This callback is called when the user selects Yes.
  • cancel - event callback registered via wakterm.action_callback. The callback's function signature is (window, pane) where window and pane are the Window and Pane. This is an optional argument. If present, this callback is called when the user selects No or closes the confirmation menu.

Example of choosing a program with user confirmation#

local wakterm = require 'wakterm'
local act = wakterm.action
local config = wakterm.config_builder()

config.keys = {
  {
    key = 'E',
    mods = 'CTRL|SHIFT',
    action = act.Confirmation {
      message = 'Do you want to run htop in a new window?',
      action = wakterm.action_callback(function(window, pane)
        window:perform_action(
          act.SpawnCommandInNewWindow { args = { 'htop' } },
          pane
        )
      end),
      cancel = wakterm.action_callback(function(window, pane)
        wakterm.log_error 'user declined'
      end),
    },
  },
}

return config

See also:

Edit this page