vim-jsx-pretty
vim-jsx-pretty copied to clipboard
:flashlight: [Vim script] JSX and TSX syntax pretty highlighting for vim.
None of the traditional means of disabling autoindenting seem to be working.
I'm running into inconsistencies in highlighting between `ft=typescript` and `ft=typescriptreact`. I'm using `yats.vim`, `vim-javascript`, and of course `vim-jsx-pretty`, all just updated using `vim-plug`. ### Some example code: ```typescript const doFoo...
Here's an example that fails for me on the current master: ``` jsx const foo = ``` Putting the cursor on the opening ``, tapping % doesn't jump to the...
I'm using polyglot. some examples of this issue:     
# Feature request Recently, I wrote some code with jsx syntax. I hope author can add a feature, highlight when call function. ```ts function test() { console.log('The test function') return...
While using this plugin with my colorscheme I do not get highlighted html inside of the .js file. Instead I get a strange rendering of the brackets.  If I...
I'm trying to highlight type arguments after a component name. ```tsx ``` This is rarely seen but it would be nice. I thought it wouldn't be too hard but I...
`htmlTagName` is linked to `htmlStatement` (which is linked to `Statement`). `jsxTagName` should either be linked to `htmlTagName` or to `Statement` for consistency. ``` :verbose hi htmlTagName htmlTagName xxx links to...
Hi there! Here's an example of a template where the problem occurs: ```react ``` When I try indenting in Typescript, all the properties in the back tick fall to column...
Hi, I seem to have a very specific problem. In my current project I have defined a styled component for highlighted text (i.e., it just changes the color and bolds...