You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -201,6 +201,8 @@ smart_review_diagram: false # Generate a Mermaid diagram in smart-review output
201
201
symbol_index: true # Build repo symbol index for cross-file context (respects .gitignore)
202
202
symbol_index_provider: regex # regex | lsp
203
203
symbol_index_lsp_command: rust-analyzer
204
+
symbol_index_lsp_languages:
205
+
rs: rust
204
206
symbol_index_max_files: 500
205
207
symbol_index_max_bytes: 200000
206
208
symbol_index_max_locations: 5
@@ -221,7 +223,7 @@ exclude_patterns:
221
223
- "**/__pycache__/**"
222
224
```
223
225
224
-
Set `symbol_index_provider: lsp` to use a language server for Rust (via `rust-analyzer`); it falls back to regex indexing if the LSP binary is missing.
226
+
Set `symbol_index_provider: lsp` to use a language server; it falls back to regex indexing if the LSP binary is missing. Configure `symbol_index_lsp_languages` and `symbol_index_lsp_command` to match your server (for example, `typescript-language-server --stdio` with `ts`/`tsx` language IDs).
0 commit comments