Skip to content

Commit 4b96c79

Browse files
committed
divide WRAP_LIMIT by 3
1 parent 94b0862 commit 4b96c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReSharper.FSharp/src/FSharp.Psi.Daemon/src/QuickDoc/FSharpQuickDocProvider.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module FSharpQuickDoc =
3636
let column = int coords.Column
3737

3838
let settingsStore = token.GetSettingsStoreWithEditorConfig()
39-
let wrapLimit = settingsStore.GetValue(fun (key: FSharpFormatSettingsKey) -> key.WRAP_LIMIT)
39+
let wrapLimit = settingsStore.GetValue(fun (key: FSharpFormatSettingsKey) -> key.WRAP_LIMIT) / 3
4040

4141
Some(results.CheckResults.GetToolTip(line, column, lineText, tokenNames, FSharpTokenTag.Identifier, wrapLimit))
4242

0 commit comments

Comments
 (0)