Search, Replace & Regex Queries

// Local Find and Replace

Press Ctrl + F to trigger the search drawer at the bottom of the editor. Input your query to see matches highlighted in yellow. Press Tab to navigate to the replace box.

// Global Search (Grep)

Press Ctrl + Shift + F to run search queries across your entire project. Matches will show up in a list panel, letting you jump to the corresponding line instantly.

// Using Regex Patterns

Toggle regular expression matching by clicking the .* indicator in the search bar. This supports full regex syntax (like \d+ for matching digits or ^import to match starts of files).