forked from VimPlug/emmet-vim
Merge pull request #515 from ChristianChiarulli/master
Support javascriptreact and typescriptreact filetypes fixes: #505
This commit is contained in:
@@ -2064,9 +2064,19 @@ let s:emmet_settings = {
|
|||||||
\ 'attribute_name': {'class': 'className', 'for': 'htmlFor'},
|
\ 'attribute_name': {'class': 'className', 'for': 'htmlFor'},
|
||||||
\ 'empty_element_suffix': ' />',
|
\ 'empty_element_suffix': ' />',
|
||||||
\ },
|
\ },
|
||||||
|
\ 'javascriptreact': {
|
||||||
|
\ 'extends': 'html',
|
||||||
|
\ 'attribute_name': {'class': 'className', 'for': 'htmlFor'},
|
||||||
|
\ 'empty_element_suffix': ' />',
|
||||||
|
\ },
|
||||||
\ 'tsx': {
|
\ 'tsx': {
|
||||||
\ 'extends': 'jsx',
|
\ 'extends': 'jsx',
|
||||||
\ },
|
\ },
|
||||||
|
\ 'typescriptreact': {
|
||||||
|
\ 'extends': 'html',
|
||||||
|
\ 'attribute_name': {'class': 'className', 'for': 'htmlFor'},
|
||||||
|
\ 'empty_element_suffix': ' />',
|
||||||
|
\ },
|
||||||
\ 'xslt': {
|
\ 'xslt': {
|
||||||
\ 'extends': 'xsl',
|
\ 'extends': 'xsl',
|
||||||
\ },
|
\ },
|
||||||
|
|||||||
Reference in New Issue
Block a user