Skip to content

Commit

Permalink
fix(inlineValues): default to false, issue with fsac
Browse files Browse the repository at this point in the history
  • Loading branch information
WillEhrendreich committed May 8, 2024
1 parent 593cfaf commit d1363b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/ionide/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ M.DefaultServerSettings = {
infoPanelStartLocked = false,
-- `infoPanelUpdate`,
infoPanelUpdate = "onCursorMove",
-- `inlineValues`,
inlineValues = { enabled = true, prefix = " // " },
-- `inlineValues`, https://github.com/ionide/ionide-vscode-fsharp/issues/1963 https://github.com/ionide/FsAutoComplete/issues/1214
inlineValues = { enabled = false, prefix = " // " },
--includeAnalyzers
includeAnalyzers = {},
--excludeAnalyzers
Expand Down Expand Up @@ -517,6 +517,7 @@ local function returnFuncNameToCallFromCapture(s)

return result
end

---comment
---@param input string
---@return string
Expand All @@ -536,7 +537,6 @@ local function unHtmlify(input)
else
result = input
end

-- print("unHtmlify result: " .. result)
return result
end
Expand Down

0 comments on commit d1363b0

Please sign in to comment.