Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Bye Bye v0.6 source code.tar.gz | 2022-04-03 | 16.9 kB | |
Bye Bye v0.6 source code.zip | 2022-04-03 | 21.9 kB | |
README.md | 2022-04-03 | 608 Bytes | |
Totals: 3 Items | 39.4 kB | 0 |
This is the last commit/tag which will support neovim v0.6
. So If you are using v0.6
I'll recommend sticking to this tag.
Following are the migration instruction:
-
With packer.nvim
:::lua use { 'numToStr/Comment.nvim', tag = 'v0.6', config = function() require('Comment').setup() end }
-
With vim-plug
:::vim Plug 'numToStr/Comment.nvim', { 'tag': 'v0.6' }
" Somewhere after plug#end() lua require('Comment').setup()