summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGharbi Mohamed <[email protected]>2020-07-15 08:42:33 +0100
committerGharbi Mohamed <[email protected]>2020-07-15 08:46:28 +0100
commit4843a3bcd4d0851812923e3f85b0a1912211edf4 (patch)
tree1f9ac7ca03d8f198899591c8319d77233eeafe9e
parent537cb980c524b15ebf5b09fbb8a066483f63d562 (diff)
remove unnecessary autocmd
-rw-r--r--plug-config/vim-commentary.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/plug-config/vim-commentary.vim b/plug-config/vim-commentary.vim
index f672715d..b6758b38 100644
--- a/plug-config/vim-commentary.vim
+++ b/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()