We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2199bb commit e963ce9Copy full SHA for e963ce9
1 file changed
Core/Sources/CopilotModel/ExportedFromLSP.swift
@@ -6,3 +6,7 @@ public typealias CursorRange = LanguageServerProtocol.LSPRange
6
public extension CursorPosition {
7
static var outOfScope: CursorPosition { .init(line: -1, character: -1) }
8
}
9
+
10
+public extension CursorRange {
11
+ static var outOfScope: CursorRange { .init(start: .outOfScope, end: .outOfScope) }
12
+}
0 commit comments