Shortcuts

The Paradime Code IDE offers a variety of shortcuts similar to those in VS Code, designed to streamline your dbt™ development process. Our shortcuts are categorized into two key areas:

  • Keyboard Shortcuts: Discover various keyboard commands to make dbt development more efficient.

  • Code IDE UI Shortcuts: Explore different buttons and right-click functionalities to enhance productivity.

Keyboard Shortcuts

Below are a list of keyboard shortcuts to simplify readability of code, bring consistency to your project, and make your dbt™ develolpment more efficient:

CommandKeyboard Shortcut (Mac)Keyboard Shortcut (Windows)

Transform to kebab case

ctrl+option+K

ctrl+alt+K

Transform to upper case

ctrl+option+U

ctrl+alt+U

Transform to lowercase

ctrl+option+L

ctrl+alt+L

Transform to snake case

ctrl+option+S

ctrl+alt+S

Transform to title case

ctrl+option+T

ctrl+alt+T

Sort lines asc

ctrl+option+↑

shift+alt+↑

Sort lines desc

ctrl+option+↓

shift+alt+↓

Delete duplicated lines

ctrl+⌥+D

ctrl+alt+D

Tutorial

Code IDE UI Shortcuts

Side by Side editing

You can also drag and drop files in the editor to create new editor groups and move editors between groups.

Markdown Preview

You can preview your Markdown files by clicking on the markdown preview button on the top-right of your selected .md file. The preview tab will update automatically as you edit your markdown file.

Multi cursor selection

Keyboard Shortcut:

  • macOS ⌘D

  • Windows Ctrl+D

Using ⌘D you can select the next occurrence after the one you selected, so you can add a cursor to next occurrences of the current selection one by one.

Copy line up / down

Keyboard Shortcut:

  • macOS⇧⌥↑ or ⇧⌥↓

  • Windows Shift+Alt↑ or Shift+Alt+↓

Move line up and down

Keyboard Shortcut:

  • macOS ⌥↑ or ⌥↓

  • Windows Alt↑ or Alt+↓

Last updated