Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2023-04-11 | 4.3 kB | |
v0.8.0 - Stable as a Rock source code.tar.gz | 2023-04-11 | 25.3 kB | |
v0.8.0 - Stable as a Rock source code.zip | 2023-04-11 | 32.8 kB | |
Totals: 3 Items | 62.4 kB | 0 |
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
:::lua require('packer').startup(function(use) use({ 'numToStr/Comment.nvim', tag = 'v0.8.0', config = function() require('Comment').setup() end, }) end)
-
With lazy.nvim
:::lua 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 https://github.com/numToStr/Comment.nvim/pull/238
- chore!: deprecate
extended
keybindings by @numToStr in https://github.com/numToStr/Comment.nvim/pull/254 - fix: respect updated
v:count
when using.
repeat by @numToStr in https://github.com/numToStr/Comment.nvim/pull/253 - feat: add
handlebars
support by @toh995 in https://github.com/numToStr/Comment.nvim/pull/257 - feat: add
applescript
support by @mrjones2014 in https://github.com/numToStr/Comment.nvim/pull/260 - feat: add
dart
support by @genesistms in https://github.com/numToStr/Comment.nvim/pull/261 - feat: add
luau
support by @lopi-py in https://github.com/numToStr/Comment.nvim/pull/262 - chore!: remove
extended
keybindings by @numToStr in https://github.com/numToStr/Comment.nvim/pull/269 - chore!: error handling by @numToStr in https://github.com/numToStr/Comment.nvim/pull/285
- feat(ft): add
dosbatch
support by @MeShootIn in https://github.com/numToStr/Comment.nvim/pull/291 - docs: fix typos in https://github.com/numToStr/Comment.nvim/pull/294
- add .editorconfig support by @matu3ba in https://github.com/numToStr/Comment.nvim/pull/295
- adding vifm ft by @TornaxO7 in https://github.com/numToStr/Comment.nvim/pull/296
- Add Supercollider and Faust support by @madskjeldgaard in https://github.com/numToStr/Comment.nvim/pull/252
- feat: add autohotkey support by @mgziminsky in https://github.com/numToStr/Comment.nvim/pull/303
- feat: add quarto filetype and enable languages using other languages' parsers by @jmbuhr in https://github.com/numToStr/Comment.nvim/pull/301
- fix(ft/fennel): fix double semicolon commentstring by @atchim in https://github.com/numToStr/Comment.nvim/pull/304
- add remind support (#315) by @kolja in https://github.com/numToStr/Comment.nvim/pull/316
- feat: add
yuck
support by @Akmadan23 in https://github.com/numToStr/Comment.nvim/pull/313 - feat(ft): add
v
support by @tobealive in https://github.com/numToStr/Comment.nvim/pull/319 - fix typo by @sudhih in https://github.com/numToStr/Comment.nvim/pull/324
New Contributors
- @toh995 made their first contribution in https://github.com/numToStr/Comment.nvim/pull/257
- @mrjones2014 made their first contribution in https://github.com/numToStr/Comment.nvim/pull/260
- @genesistms made their first contribution in https://github.com/numToStr/Comment.nvim/pull/261
- @lopi-py made their first contribution in https://github.com/numToStr/Comment.nvim/pull/262
- @MeShootIn made their first contribution in https://github.com/numToStr/Comment.nvim/pull/291
- @matu3ba made their first contribution in https://github.com/numToStr/Comment.nvim/pull/295
- @TornaxO7 made their first contribution in https://github.com/numToStr/Comment.nvim/pull/296
- @madskjeldgaard made their first contribution in https://github.com/numToStr/Comment.nvim/pull/252
- @mgziminsky made their first contribution in https://github.com/numToStr/Comment.nvim/pull/303
- @atchim made their first contribution in https://github.com/numToStr/Comment.nvim/pull/304
- @kolja made their first contribution in https://github.com/numToStr/Comment.nvim/pull/316
- @tobealive made their first contribution in https://github.com/numToStr/Comment.nvim/pull/319
- @sudhih made their first contribution in https://github.com/numToStr/Comment.nvim/pull/324
Full Changelog: https://github.com/numToStr/Comment.nvim/compare/v0.7.0...v0.8.0