MaxMEllon / vim-jsx-pretty

:flashlight: [Vim script] JSX and TSX syntax pretty highlighting for vim.
MIT License
969 stars 38 forks source link

[Feature] Highlight when call function #150

Open wgxh opened 3 years ago

wgxh commented 3 years ago

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!

yuezk commented 3 years ago

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.

wgxh commented 3 years ago

Oh, Thank you.