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

React JSX syntax highlighting and indenting for vim.

Results 31 vim-jsx issues
Sort by recently updated
recently updated
newest added

In the first image, we see my cursor is on the curly brace on line 43, but the matched curly brace highlight is incorrectly on line 45: Interestingly, if I...

I don't know why the plugin doesn't work. I add the line `let g:jsx_ext_required = 0` and it didn't work. If I put `:set syntax=javascript.jsx` it works, but I want...

When using `:edit` to reload jsx file, the b:match_words variable is appended with the jsx match words again. After multiple reloads, vim will complain `E51: Too many '('` when using...

I found that this plugin slowed down my editor a lot after installing. I did some profiling and found that the function GetJsxIndent() is the culprit. I am not really...

## Details With JSX elements named with special character dot [.], the *matchit* integration does not work properly Consider the following example that uses Semantic-UI-React: ```javascript.jsx import React from 'react'...

Created PR #164 . Example: ```jsx return ( ); ```

I don't know why but this plugin isn't working for me.. Here are my screenshots of my react file and vimrc file.. ![screenshot from 2018-06-08 23-01-32](https://user-images.githubusercontent.com/34000568/41172581-e5ad972c-6b71-11e8-9b27-5f3fa8e804d5.png) ![screenshot from 2018-06-08 23-02-27](https://user-images.githubusercontent.com/34000568/41172582-e6137380-6b71-11e8-800e-6107c252d04d.png)

When I try to paste and format text from a function, the indentation is wrong. However when I paste the text and then manually indent, it is correct. This only...

Consider this code `{}}>` if I press `%` in the beginning, I expect it to go to the end of line (the second `>`) but it goes to first `>`....