Tom Ekander
Tom Ekander
I think this: ```reason let applyHighlight = (spec: list(ChartSpecT.specItem(string)), ~highlightedKey: option(string)) => { let defaultItemOpacity = item => ChartSpecT.{ ...item, chart: { ...item.chart, strokeOpacity: None, }, }; spec->List.map(defaultItemOpacity); }; ```...
This adds auto-completion for labelled arguments. I decided to disable them for primitives like `int` or `bool` as it felt a bit iffy, but it'd work for those too. For...