New Terminal button or use the keyboard shortcut ⌃⇧` / Ctrl+⇧+`
dbt™ autocompletion
Paradime Integrated terminal provides autocompletion for both dbt™ commands and you can tab-complete model, tag, source, and package selectors to node selection flags like--select and --exclude. Check out dbt™ syntax overview docs.
Type dbt™ in your terminal and use ⇥tab key in your keyboard to get dbt™ autocompletion.
Use the
⇥tab or up/down keys to navigate through the list of resources/ commands.dbt™ commands quick action
TheRun dbt™ models button allows users to quickly access dbt™ commands for the current file on focus in your Editor. Here you have a set of popular dbt™ commands such as Build/Run/Test with options to include:
- only the current selected resource: example
dbt run --select <model_name> - current selected resource with upstream dependencies: example
dbt run --select +<model_name> - current selected resource with downstream dependencies: example
dbt run --select <model_name>+
dbt deps && dbt debug.