tabby-quick-scripts
v0.0.2
Published
Quick scripts manager for Tabby
Downloads
71
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 script
button and configure:- Name
- Script (JavaScript only)
- Group
🎈 Example script:
// 'param' is the text selected in the terminal return param.toUpperCase();
- Click the
Save
button
Running a Script
- Select text in the terminal
- Open the Quick Scripts menu using
Alt+S
Alternatively, 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+S
Alternatively, click the
Js
icon in the tab header - Hold
Ctrl
and 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.