kommentary
kommentary copied to clipboard
Neovim commenting plugin, written in lua.
As title, sometimes it would be handy if there's such command. For example: ```lua a = 1 --[[ b = 2 c = 3 d = 4]] ``` normally you...
Say I have the following codes I'd like to comment out: ```lua -- other codes use { 'vlime/vlime', ft = 'lisp', disable = true, config = function() vim.g.vlime_cl_impl = "ros"...
Now that we have `vim.keymap.set` API in Neovim nightly, it allows us to setup keymaps in really clean ways. I'm using [legendary.nvim](https://github.com/mrjones2014/legendary.nvim) to set all my keymaps, and I try...
This plugin works great in virtual mode, but doesn't work with count in normal mode (like `3cc`). Is this a missing feature? if so I can contribute to it.
I just started to profile my startup time and noticed that Kommentary (5th line down) seems to be the slowest of my plugins (profiled with `nvim --startuptime vim.log`). I'm not...
kommentary support jsx comment by default but I still want to custom my comment like below: ``` // Single line {/* Single line comment */} // Multiple lines {/* This...
[NERDCommenter](https://github.com/preservim/nerdcommenter) has the ability to comment out a part of a line. For instance, if I have the following html file: ```html lorem ipsium dolor sit amet ``` , and...
for example ```cpp int main() { /* std::cout
Hi, Today I noticed that something strange was happening with my clipboard. I was commenting a lot of lines in and out to test something, and my unnamed clipboard constantly...
When I use this config: ```lua config.configure_language('default', { use_consistent_indentation = true, ignore_whitespace = true, }) config.configure_language('gohtmltmpl', { prefer_multi_line_comments = true, single_line_comment_string = false, multi_line_comment_string = { '{{/*', '*/}}' }, })...