Configure indexing
- In the upper-right corner of your Qoder IDE, click the user icon or use the keyboard shortcut (
⌘
⇧
,
(macOS)orCtrl
shift
,
(Windows)), and select Qoder Settings. - In the left-side navigation pane, click Indexing.
- Choose one of the following:
- To manually enable indexing, click Create next to Codebase Indexing.
- To enable continuous background indexing, toggle on Automatic Indexing.
Note: Codebase indexing supports codebases up to 100,000 files. Automatic indexing is enabled by default for codebases with fewer than 10,000 files. For larger codebases, indexing need to be enabled manually.
Ignore files
By default, Qoder indexes all project files except:- Files and directories specified in
.gitignore
- Files listed in
.qoderignore
Specify custom ignore files
You can define additional files or directories to exclude from indexing.- In the upper-right corner of the Qoder IDE, click the user icon or use the keyboard shortcut (
⌘
⇧
,
(macOS)orCtrl
shift
,
(Windows)), and select Qoder Settings. - In the left-side navigation pane, click Indexing.
- Click Manage next to Ignore Files.
- Add your custom patterns.
Pattern | Description |
---|---|
config.json | Ignores a specific file |
dist/ | Ignores an entire directory |
*.log | Ignores all files with .log extension |
**/logs | Ignores logs directories at any nesting level |
!app/ | Excludes a path from being ignored (negation) |
git check-ignore -v [file]