> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# "Peek" and "Go To" Definition

> Paradime Peek & Go To: Instantly navigate dbt™ project code with peek and go-to-definition features. Improve code understanding and debugging.

export const Arcade = ({src, title}) => <div style={{
  position: 'relative',
  paddingBottom: 'calc(56.2225% + 41px)',
  height: 0,
  width: '100%'
}}>
    <iframe src={src} title={title} frameBorder="0" loading="lazy" allow="clipboard-write" allowFullScreen style={{
  position: 'absolute',
  top: 0,
  left: 0,
  width: '100%',
  height: '100%',
  colorScheme: 'light'
}} />
  </div>;

In the Paradime Code IDE, you can right-click on any source, model, or macro to navigate to the file where it is defined.

There are two right-click options:

* Go to Definition: Opens a separate file for the highlighted source, model, or macro.
* Peek Definition: Provides a preview of the highlighted source, model, or macro within your current file.

**Go To Definition:**

To utilize this feature, highlight your desired source, model, or macro, and right-click to select "Go to Definition." This action will automatically open a new file related to your highlighted code.

**Peek definition**

To utilize this feature, highlight your desired source, model, or macro, and right-click to choose "Peek Definition." This action will automatically generate a preview of the highlighted code within your current file.

<Arcade src="https://demo.arcade.software/4GQ331kuBrRzhvDQLy2a?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="'Peek' and 'Go To' Definition" />


## Related topics

- [User interface](/products/code-ide/user-interface/index.md)
- [Working with Sources](/guides/dbt-fundamentals/getting-started-with-dbt/working-with-sources.md)
- [Data Warehouse Tools](/products/dino-ai/tools-and-features/warehouse-tool/index.md)
- [BigQuery Multi-Project Service Account](/guides/data-warehouse-essentials/bigquery-multi-project-service-account.md)
- [Defining Your Sources in sources.yml](/guides/dbt-fundamentals/configuring-your-dbt-project/define-your-sources.yml.md)
