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: tools/SourceKit/docs/Protocol.md
+84Lines changed: 84 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -492,6 +492,86 @@ Welcome to SourceKit. Type ':help' for assistance.
492
492
}
493
493
```
494
494
495
+
## Cursor Info
496
+
497
+
SourceKit is capable of providing information about a specific symbol at a specific cursor, or offset, position in a document.
498
+
499
+
To gather documentation, SourceKit must be given either the name of a module (key.modulename), the path to a file (key.sourcefile), or some text (key.sourcetext). key.sourcefile is ignored when key.sourcetext is also provided, and both of those keys are ignored if key.modulename is provided.
0 commit comments