We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6942e9b commit b9e09f3Copy full SHA for b9e09f3
autoload/context/commentstring.vim
@@ -17,3 +17,20 @@ let g:context#commentstring#table.html = {
17
18
let g:context#commentstring#table.xhtml = g:context#commentstring#table.html
19
20
+let g:context#commentstring#table['javascript.jsx'] = {
21
+ \ 'jsxStatment' : '/*%s*/',
22
+ \ 'jsxRegion' : '{/*%s*/}',
23
+ \}
24
+
25
+let g:context#commentstring#table['typescript.tsx'] = {
26
+ \ 'tsxStatment' : '/*%s*/',
27
+ \ 'tsxRegion' : '{/*%s*/}',
28
29
30
+let g:context#commentstring#table.vue = {
31
+ \ 'javaScript' : '//%s',
32
+ \ 'cssStyle' : '/*%s*/',
33
34
35
+let g:context#commentstring#table['typescript.jsx'] = g:context#commentstring#table['typescript.tsx']
36
0 commit comments