Jelajahi Sumber

Merge pull request #38 from ghmhd/@ghmhd/feature/add-jsx-comment-support

add jsx comment support
Christian Chiarulli 5 tahun lalu
induk
melakukan
b900635a06
2 mengubah file dengan 5 tambahan dan 3 penghapusan
  1. 1 3
      plug-config/vim-commentary.vim
  2. 4 0
      vim-plug/plugins.vim

+ 1 - 3
plug-config/vim-commentary.vim

@@ -1,4 +1,3 @@
-" this function check whether vim is in normal mode or not and comment appropriately
 function! Comment()
   if (mode() == "n" )
     execute "Commentary"
@@ -6,5 +5,4 @@ function! Comment()
     execute "'<,'>Commentary"
   endif
  endfunction
-vnoremap <silent> <space>/ :call Comment()  
-autocmd filetype javascript.jsx setlocal commentstring={/*\ %s\ */}
+vnoremap <silent> <space>/ :call Comment()

+ 4 - 0
vim-plug/plugins.vim

@@ -8,6 +8,10 @@ endif
 
 call plug#begin('~/.config/nvim/autoload/plugged')
 
+  " jsx syntax support
+  Plug 'maxmellon/vim-jsx-pretty'
+  
+  Plug 'suy/vim-context-commentstring'
   " Change dates fast
   Plug 'tpope/vim-speeddating'
   " Convert binary, hex, etc..