IDE Features2 min read

Search across files

Global search

Press Ctrl+Shift+F to open the project-wide search panel. It searches the content of every text file in your workspace in real time.

Using search

  • 1.Type your search term in the Search box.
  • 2.Results appear grouped by file, with the matching line highlighted.
  • 3.Click any result to jump to that exact line in the editor.
  • Case sensitivity and regex

  • Aa button — toggle case-sensitive search
  • .* button — toggle regex mode
  • In regex mode you can use any JavaScript regular expression, for example:

    functions+w+(

    Replace across files

    Click the > arrow next to the search box to expand the replace field. Enter a replacement string, then:

  • Click the file icon next to a result to replace in that file only
  • Click the Replace All button to replace every match across the whole project
  • Warning: Replace All is not undoable across multiple files. Review matches before replacing.

    Filtering by file type

    After searching, use the files to include field to narrow results — for example /*.ts shows TypeScript files only, or src/ limits to the src directory.