| 12 | ) |
| 13 | |
| 14 | type Completion struct { |
| 15 | Text string |
| 16 | StartPosition int |
| 17 | Display string |
| 18 | DisplayMeta string |
| 19 | } |
| 20 | |
| 21 | func CompleteInput(textBeforeCursor string, registry *skills.SkillRegistry, cwd string) []Completion { |
| 22 | stripped := strings.TrimLeftFunc(textBeforeCursor, unicode.IsSpace) |
nothing calls this directly
no outgoing calls
no test coverage detected