-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
I'm using pangloss/vim-javascript as my highlighting dependency. I've read the README.md.
When I'm writing JSX and have ES6-style backticks and ${} in my code, the highlighting breaks from there until the end of the file.
<Link to={`/news/${post._id}`} key={post._id}>
<div className='post-card'>
<h3>{post.title}</h3>
<ReactMarkdown className='markdown' disallowedTypes={['link', 'heading']} unwrapDisallowed={true} source={post.preview} />
</div>
</Link>
Minimal .vimrc
set nocompatible " be iMproved, required
filetype plugin indent on
syntax on
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'mxw/vim-jsx'
call vundle#end() " required
" Colour scheme
syntax enable
set t_Co=256
set background=light
thallada, mikeybkats, marco-fp, simianhacker, Seb-C and 5 more
Metadata
Metadata
Assignees
Labels
No labels
