Go to file
2022-11-03 13:20:22 +09:00
images Add preview gif of quickcomment 2022-11-03 13:20:22 +09:00
plugin Add LICENSE 2022-11-03 13:10:39 +09:00
LICENSE Add LICENSE 2022-11-03 13:10:39 +09:00
README.md Update README.md 2022-11-03 13:12:26 +09:00

NVim QuickComment

Quickly comment lines in a file with a single command.

Installation

Create the directory structure ${HOME}/.config/nvim/pack/plugins/start/ and place nvim-quickcomment/ in start/, or use a plugin manager.

Usage

Add the following to your init.lua (replace "q" with the key you want to map to):

vim.cmd('nmap q :lua vim.g.quickcomment_togglecommentline()<CR>')
vim.cmd('vmap q :luado vim.g.quickcomment_togglecommentline(linenr)<CR>')

Or in init.vim:

nmap q :lua vim.g.quickcomment_togglecommentline()<CR>
vmap q :luado vim.g.quickcomment_togglecommentline(linenr)<CR>