Skip to content

Commit 11b9207

Browse files
committed
Increase method lookback to 6 lines
1 parent cd2d77b commit 11b9207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FsAutoComplete/CompilerServiceInterface.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type ParseAndCheckResults(parse: FSharpParseFileResults,
1414

1515
member x.TryGetMethodOverrides (lines: string[]) (line: int) (col: int) =
1616
// Find the starting point, ideally right after the first '('
17-
let lineCutoff = line - 3
17+
let lineCutoff = line - 6
1818
let commas, line, col =
1919
let rec prevPos (line,col) =
2020
match line, col with

0 commit comments

Comments
 (0)