enhancementhelp wanted
説明
My test file:
import * as R from 'ramda'
console.log('test')
export let getMetaData = (node) => ({
...R.pick(['hasConnectedError', 'syntaxError'], node),
title: 'node-' + node.customId
})
log in console.log gets a color via support.function but pick in R.pick does not. There is meta.function-call but it colors the whole R.pick, but I want only color pick. I tried entity.name.function - meta.function-call without luck.
token config part:
"editor.tokenColors": [
{
scope: "meta.function-call",
settings: "TestColorG",
},
{
scope: "support.function",
settings: "TestColorC",
},
],
Screenshot of the outcome so far:


Only support.function:

pick not higlighted in line 11:
