diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index 36c17c6..e64ce85 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -16,7 +16,6 @@ Plug 'tpope/vim-repeat' " if g:vim_ide Plug 'tomtom/tcomment_vim' - Plug 'glts/vim-textobj-comment' " else " Plug 'tpope/vim-commentary' " endif diff --git a/nvim/plugin/editing.vim b/nvim/plugin/editing.vim index 59b18d3..d53d96a 100644 --- a/nvim/plugin/editing.vim +++ b/nvim/plugin/editing.vim @@ -236,7 +236,6 @@ set commentstring=//%s " Remove the mappings that I won't use let g:tcomment_maps = 0 - " Closely replicate the behavior of tpope/vim-commentary nmap gc TComment_gc nmap gcc TComment_gcc nmap gC TComment_gcb @@ -245,8 +244,6 @@ set commentstring=//%s nmap gCC m'o''TComment_gcb+ xnoremap gc :TCommentMaybeInline xnoremap gC :TCommentBlock - " Make an alias for the comment text object - omap gc ac " }}}