Skip to content

Commit

Permalink
divide WRAP_LIMIT by 3
Browse files Browse the repository at this point in the history
  • Loading branch information
dawedawe committed Jul 17, 2023
1 parent 94b0862 commit 4b96c79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module FSharpQuickDoc =
let column = int coords.Column

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

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

Expand Down

0 comments on commit 4b96c79

Please sign in to comment.