vim-jsx-pretty icon indicating copy to clipboard operation
vim-jsx-pretty copied to clipboard

:flashlight: [Vim script] JSX and TSX syntax pretty highlighting for vim.

Results 12 vim-jsx-pretty issues
Sort by recently updated
recently updated
newest added

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: ![](https://gc.gy/89013403.png) ![](https://gc.gy/89013415.png) ![](https://gc.gy/89013422.png) ![](https://gc.gy/89013439.png) ![](https://gc.gy/89013457.png)

# 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. ![image](https://user-images.githubusercontent.com/13983125/105412811-3643c380-5c03-11eb-8b5b-b022600817a8.png) 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...

enhancement

`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...