tabby-quick-scripts
v0.0.2
Published
Quick scripts manager for Tabby
Maintainers
Readme
tabby-quick-scripts
A Quick Scripts plugin for Tabby terminal.
Shortcuts
The default shortcut for opening the Quick Scripts menu is Alt+S (Windows).
Usage
Adding a Script
- Open Settings and select
Quick Scripts - Click the
Add scriptbutton and configure:- Name
- Script (JavaScript only)
- Group
🎈 Example script:
// 'param' is the text selected in the terminal return param.toUpperCase();
- Click the
Savebutton
Running a Script
- Select text in the terminal
- Open the Quick Scripts menu using
Alt+SAlternatively, click the
icon next to the settings button
- Click a script to run it
Running a Script Group
- Select text in the terminal
- Open the Quick Scripts menu using
Alt+SAlternatively, click the
Jsicon in the tab header - Hold
Ctrland click a group name to run all scripts in that group sequentially
How It Works
The plugin:
- Takes the selected terminal text as input
- Passes it through the selected script(s)
- Displays the result in a modal
- Provides an option to copy the result to clipboard
When running a script group, each script's output becomes the input for the next script in sequence.
Acknowledgments
This plugin is based on @terminus-quick-cmds. Thanks to their original work.
