A Quick Scripts plugin for Tabby terminal.
The default shortcut for opening the Quick Scripts menu is Alt+S (Windows).
- 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
- Select text in the terminal
- Open the Quick Scripts menu using
Alt+S - Click a script to run it
- 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
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.
This plugin is based on @terminus-quick-cmds. Thanks to their original work.