https://github.com/aureolebigben/wezterm-cmd-sender
A simple plugin to send command to multiple pane in wezterm
https://github.com/aureolebigben/wezterm-cmd-sender
wezterm wezterm-plugin
Last synced: 5 months ago
JSON representation
A simple plugin to send command to multiple pane in wezterm
- Host: GitHub
- URL: https://github.com/aureolebigben/wezterm-cmd-sender
- Owner: aureolebigben
- License: mit
- Created: 2024-08-27T08:51:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-24T09:38:13.000Z (over 1 year ago)
- Last Synced: 2025-09-27T18:36:57.893Z (8 months ago)
- Topics: wezterm, wezterm-plugin
- Language: Lua
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wezterm - aureolebigben/wezterm-cmd-sender - Send commands to multiple panes. (Utility)
README
# wezterm-cmd-sender
A simple plugin to send command to multiple pane in wezterm
I am new to the world of Lua, so feel free to open pull requests to improve the plugin or the documentation.
# Usage

# Setup
1. Require the plugin
```lua
local wezterm = require 'wezterm'
local cmd_sender = wezterm.plugin.require("https://github.com/aureolebigben/wezterm-cmd-sender")
```
2. Apply the keybinding to config
```lua
cmd_sender.apply_to_config(config)
```
If you want to change keybinding or description you can pass opts to apply_to_config
```lua
cmd_sender.apply_to_config(config, {
key = 'mapped:s',
mods = 'CMD|SHIFT',
description = 'Enter command to send to all panes of active tab'
})
```