1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-27 07:18:13 +03:00
wezterm/docs/config/lua/keyassignment/ShowLauncher.md

17 lines
247 B
Markdown

# ShowLauncher
Activate the [Launcher Menu](../../launch.md#the-launcher-menu)
in the current tab.
```lua
local wezterm = require 'wezterm'
return {
keys = {
{ key = 'l', mods = 'ALT', action = wezterm.action.ShowLauncher },
},
}
```