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
- chore!: remove old lua APIs by @numToStr in #238
- chore!: deprecate
extended
keybindings by @numToStr in #254 - fix: respect updated
v:count
when using.
repeat by @numToStr in #253 - feat: add
handlebars
support by @toh995 in #257 - feat: add
applescript
support by @mrjones2014 in #260 - feat: add
dart
support by @genesistms in #261 - feat: add
luau
support by @lopi-py in #262 - chore!: remove
extended
keybindings by @numToStr in #269 - chore!: error handling by @numToStr in #285
- feat(ft): add
dosbatch
support by @MeShootIn in #291 - docs: fix typos in #294
- add .editorconfig support by @matu3ba in #295
- adding vifm ft by @TornaxO7 in #296
- Add Supercollider and Faust support by @madskjeldgaard in #252
- feat: add autohotkey support by @mgziminsky in #303
- feat: add quarto filetype and enable languages using other languages' parsers by @jmbuhr in #301
- fix(ft/fennel): fix double semicolon commentstring by @atchim in #304
- add remind support (#315) by @kolja in #316
- feat: add
yuck
support by @Akmadan23 in #313 - feat(ft): add
v
support by @tobealive in #319 - fix typo by @sudhih in #324
New Contributors
- @toh995 made their first contribution in #257
- @mrjones2014 made their first contribution in #260
- @genesistms made their first contribution in #261
- @lopi-py made their first contribution in #262
- @MeShootIn made their first contribution in #291
- @matu3ba made their first contribution in #295
- @TornaxO7 made their first contribution in #296
- @madskjeldgaard made their first contribution in #252
- @mgziminsky made their first contribution in #303
- @atchim made their first contribution in #304
- @kolja made their first contribution in #316
- @tobealive made their first contribution in #319
- @sudhih made their first contribution in #324
Full Changelog: v0.7.0...v0.8.0