vim-jsx-pretty
vim-jsx-pretty copied to clipboard
[Feature] Highlight when call function
Feature request
Recently, I wrote some code with jsx syntax. I hope author can add a feature, highlight when call function.
function test() {
console.log('The test function')
return true
}
test() // the function is not highlight
Please, Thanks!
This plugin is used to highlight the jsx syntax, so it won't highlight the function call by design.
You might need to submit a feature request to the JavaScript highlighting plugin you use.
Oh, Thank you.