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
feat: recursively parse import files and goto definition of well known types (#56)
When a file is opened, all imports are parsed recursively up to a depth
of 8. When a file is being edited it and its imports are parsed with a
depth of 2.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
- ✅ **Diagnostics**: Syntax errors and import error detected with the tree-sitter parser.
16
16
- ✅ **Document Symbols**: Navigate and view all symbols, including messages and enums.
17
17
- ✅ **Code Formatting**: Format `.proto` files using `clang-format` for a consistent style.
18
-
- ✅ **Go to Definition**: Jump to the definition of symbols like messages or enums.
18
+
- ✅ **Go to Definition**: Jump to the definition of symbols like messages or enums and imports.
19
19
- ✅ **Hover Information**: Get detailed information and documentation on hover.
20
20
- ✅ **Rename Symbols**: Rename protobuf symbols and propagate changes across the codebase.
21
21
- ✅ **Find References**: Find where messages, enums, and fields are used throughout the codebase.
@@ -134,7 +134,7 @@ Protols provides a list of symbols in the current document, including nested sym
134
134
135
135
### Go to Definition
136
136
137
-
Jump directly to the definition of any custom symbol, including those in other files or packages. This feature works across package boundaries.
137
+
Jump directly to the definition of any custom symbol or imports, including those in other files or packages. This feature works across package boundaries.
0 commit comments