Launch Configurations
Launch Configurations enables you to save your configuration of windows, tab, and panes, so that you can reopen the same set of sessions per project quickly.
What is it
With Launch configurations you can save in the app or by adding a yaml file.
How to use it
Set up the configuration of windows, tabs, and panes you would like to save.
From the Command Palette, enter
Save New Launch Configuration
.Name the configuration file, the name field cannot be empty.
Click the save configuration button.
How to access it
From the Command Palette, enter
Launch Configuration
to open and select Launch Configuration.Right-clicking the new Tab + button to open a menu and select saved Launch Configuration.
From the Mac Menu,
File > Launch Configurations
, where you can search through and open your saved Launch Configuration.
Terminal Tip You can open saved Launch Configurations via Alfred Workflow or Raycast Extension. Learn more here. Credit to @joetannenbaum
How it works
YAML Format
All yaml files are stored in the following location:
~/.warp/launch_configurations/
The cwd:
value in the yaml code must contain an absolute path or ""
. Note that ~
or empty paths will result in the file not being visible on the list of options for Launch Configurations.
Windows
Here's a sample configuration that shows how windows are structured.
Tabs
Here's a sample configuration that shows how tabs are structured.
Use the
title
field to set a custom tab nameUse the
color
field to set the tab colorWe currently support using the terminal colors (ANSI colors):
Red | Green | Yellow | Blue | Magenta | Cyan
The actual color values will be automatically derived from your Warp theme
Panes
Launch Configurations support setting split panes in each tab. Note that Warp also supports nesting split panes.
Commands
Use the commands
field to define a set of commands to run when a configuration is launched.
Last updated