Skip to content

v0.8.0 - Stable as a Rock

Latest
Compare
Choose a tag to compare
@numToStr numToStr released this 13 Apr 07:06
e51f2b1

This release some brings more filetype support and removal of deprecated APIs and keybindings. This release is guaranteed to be API compatible with nvim v0.8.0. So, until you upgrade to nvim v0.9.0, I recommend sticking to this tag.

  • With packer.nvim
require('packer').startup(function(use)
    use({
        'numToStr/Comment.nvim',
        tag = 'v0.8.0',
        config = function()
            require('Comment').setup()
        end,
    })
end)
  • With lazy.nvim
require("lazy").setup({
  {
    'numToStr/Comment.nvim',
    tag = 'v0.8.0',
    config = function()
        require('Comment').setup()
    end,
  },
})

What's Changed

New Contributors

Full Changelog: v0.7.0...v0.8.0