> ## 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.

# Find and Replace

> Paradime IDE provides powerful search and find & replace functionality, enabling efficient project navigation and time-saving development workflows.

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 IDE you can find and replace across multiple files in your repository. Open the find and replace panel 🔍 and enter the term you want to search for.

<Arcade src="https://demo.arcade.software/FNzf9MoSVFuRev6wI2Yb?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="Find and Replace" />

### Advanced Search Toggles

You can refine your search using advanced search toggles:

| Advanced Search Toggle      | Description                                                                                    | Example                                                                                                |
| --------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| **Match Case**              | Match the exact case of the search term.                                                       | **Search term**: `Date`**Matches**: `Date`**Does not match**: `date`                                   |
| **Match Whole Word**        | Match the whole word only.                                                                     | **Search term**: `date`**Matches**: `date`**Does not match**: `order_date`                             |
| **Use Regular Expressions** | Use regular expressions for more complex searches.                                             | **Search term**: `date*`**Matches**: `date`, `dates`, `dated`**Does not match**: `database`, `mandate` |
| **Include Ignored Files**   | Include file types that are normally ignored by the search (e.g., files listed in .gitignore). | **Search term**: `date`**Matches**: `date` in files like `.md`, `.json`, `.log`, etc.                  |

### Current File Find & Replace

Paradime allows you to quickly find text and replace it in the currently opened file. Press `⌘F` on macOS or `CTRL+F` on Windows to open the Find widget in the editor. The search results will be highlighted in the editor, overview ruler and minimap.

If there is more than one matched result in the current opened file, you can press `Enter` or `⇧Enter` to navigate to the next or previous result when the find input box is focused.

<Arcade src="https://demo.arcade.software/PIPiIN7VhgSITKV8KpAU?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="Find and Replace" />


## Related topics

- [File Navigation](/products/code-ide/user-interface/file-navigation.md)
- [Flexible layout](/products/code-ide/user-interface/flexible-layout.md)
- [dbt™ Modifiers](/integrations/pre-commit/dbt-tm-checkpoint-hooks/dbt-tm-modifiers.md)
- [Left Panel](/products/code-ide/left-panel/index.md)
- [Snowflake OAuth](/products/settings/connections/connection-security/snowflake-oauth.md)
