v0.6.1 - Before Apocalypse
This release meant to be a stable snapshot of the plugin so that I can do some crazy refactoring #177 and sad deprecations #180 later on inside the plugin. This release is compatible with Neovim >=v0.7 :)
Following are the instructions:
- With packer.nvim
use {
'numToStr/Comment.nvim',
tag = 'v0.6.1',
config = function()
require('Comment').setup()
end
}
- With vim-plug
Plug 'numToStr/Comment.nvim', { 'tag': 'v0.6.1' }
" Somewhere after plug#end()
lua require('Comment').setup()
What's Changed
- feat!:
<Plug>
mappings by @numToStr in #98 - feat: add
elixir
support by @sbennett33 in #148 - feat: add
gdscript
support by @Arrow-x in #152 - feat: add
cabal
support by @uf5 in #156 - feat: add
R
support by @jmbuhr in #165 - chore: tweak emmylua docs by @numToStr in #162
- feat: add
cuda
support by @horst5000 in #170 - feat: add
stata
support by @richardcherron in #173 - feat: add
Solidity
support by @alefbragin in #178 - feat: add
arduino
support by @saecki in #181
New Contributors
- @RielJ made their first contribution in #146
- @sbennett33 made their first contribution in #148
- @Arrow-x made their first contribution in #152
- @uf5 made their first contribution in #156
- @jmbuhr made their first contribution in #165
- @horst5000 made their first contribution in #170
- @richardcherron made their first contribution in #173
- @alefbragin made their first contribution in #178
Full Changelog: v0.6...v0.6.1