Skip to content
Ask Questions

Env

Env manages named environment sets and the variables inside them.

  • switch between env sets
  • create, rename, and delete env sets
  • edit variable values, descriptions, and sensitivity
  • import and export env data
  • j / k: move between env sets
  • e / Enter: open the variables table
  • Ctrl+P: open the command palette
  • j / k: move through rows
  • h / l: move between Variable, Value, Description, and Sensitive
  • e / Enter: edit the selected field
  • a: add a new variable
  • d: delete the selected variable
  • Esc: return to normal Env browsing
  • Enter: save
  • Esc: cancel
  • Tab: placeholder completion
  • Ctrl+V: paste

Sensitive toggles directly. It does not open a text editor.

  • home
  • env
  • history
  • new NAME
  • rename NAME
  • import PATH
  • export PATH
  • set KEY=value
  • del
  • del KEY
  • edit

Use new NAME.

Use either:

  • set KEY=value
  • interactive editing with e, then Enter

Use import PATH.

Imported env data creates new env set(s). It does not merge into the currently selected env set.

Current import and export commands are key/value oriented:

  • .env-style files map cleanly to one env set
  • JSON env workspaces can be imported, but only key/value pairs are preserved
  • Description and Sensitive metadata are part of app storage, not .env export files

Env values are intended to be consumed by placeholders inside requests. Inline editors and the raw body editor support placeholder completion with Tab.

Use placeholders like {{API_URL}} or {{TOKEN}} in request fields.

For full command behavior, see Command Palette.