1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
|
*comment-nvim.txt* For Neovim version 0.7 Last change: 2021 July 11
_____ _ _
/ ____/ / / (_)
/ / ___ _ __ ___ _ __ ___ ___ _ __ / /_ _ ____ ___ _ __ ___
/ / / _ \/ '_ ` _ \/ '_ ` _ \ / _ \ '_ \/ __/ / '_ \ \ / / / '_ ` _ \
/ /___/ (_) / / / / / / / / / / / __/ / / / /_ _/ / / \ V // / / / / / /
\_____\___//_/ /_/ /_/_/ /_/ /_/\___/_/ /_/\__(_)_/ /_/\_/ /_/_/ /_/ /_/
· Smart and Powerful comment plugin ·
==============================================================================
Table of Contents *comment.contents*
Introduction ···················································· |comment-nvim|
Usage ·························································· |comment.usage|
Configuration ················································· |comment.config|
Keybindings ·············································· |comment.keybindings|
Plug Mappings ················································ |comment.plugmap|
Core Lua API ····················································· |comment.api|
Language/Filetype detection ······································· |comment.ft|
Utilities ······················································ |comment.utils|
Operator-mode API ············································· |comment.opfunc|
Extra API ······················································ |comment.extra|
==============================================================================
Introduction *comment-nvim*
Comment.nvim is a smart and powerful comment plugin for neovim. It supports
dot-repeat, counts, line ('//') and block ('/* */') comments, and can be used
with motion and text-objects. It has native integration with |tressitter| to
support embedded filetypes like html, vue, markdown with codeblocks etc.
*comment.dotrepeat*
Comment.nvim uses |operatorfunc| combined with |g@| to support dot-repeat, and
various marks i.e., |'[| |']| |'<| |'>| to deduce the region with the {motion}
argument provided by 'operatorfunc'. See |comment.api.call|
*comment.commentstring*
Comment.nvim picks commentstring, either linewise/blockwise, from one of the
following places
1. 'pre_hook'
If a string is returned from this function then it will be used for
(un)commenting. See |comment.config|
2. |comment.ft|
Using the commentstring table inside the plugin (using treesitter).
Fallback to |commentstring|, if not found.
3. |commentstring| - Neovim's native commentstring for the filetype
Although Comment.nvim supports native 'commentstring' but unfortunately it has
the least priority. The caveat with this approach is that if someone sets the
`commentstring`, without returning it, from the 'pre_hook' and the current
filetype also exists in the |comment.ft| then the commenting will be done using
the string in |comment.ft| instead of using 'commentstring'. To override this
behavior, you have to manually return the 'commentstring' from 'pre_hook'.
*comment.sourcecode*
Comment.nvim is FOSS and distributed under MIT license. All the source code is
available at https://github.com/numToStr/Comment.nvim
==============================================================================
Usage *comment.usage*
Before using the plugin, you need to call the `setup()` function to create the
default mappings. If you want, you can also override the default configuration
by giving it a partial 'comment.config.Config' object, it will then be merged
with the default configuration.
C.setup({config?}) *comment.usage.setup*
Configures the plugin
Parameters: ~
{config?} (CommentConfig) User configuration
Returns: ~
(CommentConfig) Returns the modified config
See: ~
|comment.config|
Usage: ~
>lua
-- Use default configuration
require('Comment').setup()
-- or with custom configuration
require('Comment').setup({
ignore = '^$',
toggler = {
line = '<leader>cc',
block = '<leader>bc',
},
opleader = {
line = '<leader>c',
block = '<leader>b',
},
})
<
==============================================================================
Configuration *comment.config*
*comment.config.defaults*
Following is the default config for the |comment.usage.setup|. If you want to
override, just modify the option that you want, then it will be merged with the
default config.
>lua
{
padding = true,
sticky = true,
ignore = nil,
toggler = { line = 'gcc', block = 'gbc' },
opleader = { line = 'gc', block = 'gb' },
extra = { above = 'gcO', below = 'gco', eol = 'gcA' },
mappings = { basic = true, extra = true },
pre_hook = nil,
post_hook = nil,
}
<
CommentConfig *comment.config.CommentConfig*
Plugin's configuration
Fields: ~
{padding} (boolean|fun():boolean) Controls space between the comment
and the line (default: 'true')
{sticky} (boolean) Whether cursor should stay at the
same position. Only works in NORMAL
mode mappings (default: 'true')
{ignore} (string|fun():string) Lua pattern used to ignore lines
during (un)comment (default: 'nil')
{mappings} (Mappings|false) Enables |comment.keybindings|
NOTE: If given 'false', then the
plugin won't create any mappings
{toggler} (Toggler) See |comment.config.Toggler|
{opleader} (Opleader) See |comment.config.Opleader|
{extra} (ExtraMapping) See |comment.config.ExtraMapping|
{pre_hook} (fun(c:CommentCtx):string) Function to call before (un)comment.
It is called with a {ctx} argument
of type |comment.utils.CommentCtx|
(default: 'nil')
{post_hook} (fun(c:CommentCtx)) Function to call after (un)comment.
It is called with a {ctx} argument
of type |comment.utils.CommentCtx|
(default: 'nil')
Mappings *comment.config.Mappings*
Create default mappings
Fields: ~
{basic} (boolean) Enables operator-pending mapping; `gcc`, `gbc`,
`gc{motion}` and `gb{motion}` (default: 'true')
{extra} (boolean) Enable extra mapping; `gco`, `gcO` and `gcA`
(default: 'true')
Toggler *comment.config.Toggler*
LHS of toggle mappings in NORMAL
Fields: ~
{line} (string) Linewise comment (default: 'gcc')
{block} (string) Blockwise comment (default: 'gbc')
Opleader *comment.config.Opleader*
LHS of operator-mode mappings in NORMAL and VISUAL mode
Fields: ~
{line} (string) Linewise comment (default: 'gc')
{block} (string) Blockwise comment (default: 'gb')
ExtraMapping *comment.config.ExtraMapping*
LHS of extra mappings
Fields: ~
{below} (string) Inserts comment below (default: 'gco')
{above} (string) Inserts comment above (default: 'gcO')
{eol} (string) Inserts comment at the end of line (default: 'gcA')
Config:get() *comment.config:get*
Get the config
Returns: ~
(CommentConfig)
Usage: ~
>lua
require('Comment.config'):get()
<
==============================================================================
Keybindings *comment.keybindings*
Comment.nvim provides default keybindings for (un)comment your code. These
keybinds are enabled upon calling |commen.usage.setup| and can be configured
or disabled, if desired.
Basic: ~
*gc*
*gb*
*gc[count]{motion}*
*gb[count]{motion}*
Toggle comment on a region using linewise/blockwise comment. In 'NORMAL'
mode, it uses 'Operator-Pending' mode to listen for an operator/motion.
In 'VISUAL' mode it simply comment the selected region.
*gcc*
*gbc*
*[count]gcc*
*[count]gbc*
Toggle comment on the current line using linewise/blockwise comment. If
prefixed with a 'v:count' then it will comment over the number of lines
corresponding to the {count}. These are only available in 'NORMAL' mode.
Extra: ~
*gco* - Inserts comment below and enters INSERT mode
*gcO* - Inserts comment above and enters INSERT mode
*gcA* - Inserts comment at the end of line and enters INSERT mode
==============================================================================
Plug Mappings *comment.plugmap*
Comment.nvim provides <Plug> mappings for most commonly used actions. These
are enabled by default and can be used to make custom keybindings. All plug
mappings have support for dot-repeat except VISUAL mode keybindings. To create
custom comment function, check out 'comment.api' section.
*<Plug>(comment_toggle_linewise)*
*<Plug>(comment_toggle_blockwise)*
Toggle comment on a region with linewise/blockwise comment in NORMAL mode.
using |Operator-Pending| mode (or |g@|) to get the region to comment.
These powers the |gc| and |gb| keybindings.
*<Plug>(comment_toggle_linewise_current)*
*<Plug>(comment_toggle_blockwise_current)*
Toggle comment on the current line with linewise/blockwise comment in
NORMAL mode. These powers the |gcc| and 'gbc' keybindings.
*<Plug>(comment_toggle_linewise_count)*
*<Plug>(comment_toggle_blockwise_count)*
Toggle comment on a region using 'v:count' with linewise/blockwise comment
in NORMAL mode. These powers the |[count]gcc| and |[count]gbc| keybindings.
*<Plug>(comment_toggle_linewise_visual)*
*<Plug>(comment_toggle_blockwise_visual)*
Toggle comment on the selected region with linewise/blockwise comment in
NORMAL mode. These powers the |{visual}gc| and |{visual}gb| keybindings.
Usage: ~
>lua
-- Toggle current line or with count
vim.keymap.set('n', 'gcc', function()
return vim.v.count == 0
and '<Plug>(comment_toggle_linewise_current)'
or '<Plug>(comment_toggle_linewise_count)'
end, { expr = true })
-- Toggle in Op-pending mode
vim.keymap.set('n', 'gc', '<Plug>(comment_toggle_linewise)')
-- Toggle in VISUAL mode
vim.keymap.set('x', 'gc', '<Plug>(comment_toggle_linewise_visual)')
<
==============================================================================
Core Lua API *comment.api*
This module provides the core lua APIs which is used by the default keybindings
and <Plug> (Read |comment.plugmap|) mappings. These API can be used to setup your
own custom keybindings or to even make your (un)comment function.
*comment.api.toggle.linewise*
*comment.api.toggle.blockwise*
api.toggle *comment.api.toggle*
Provides API to toggle comments over a region, on current-line, or with a
count using line or block comment string.
Every function takes a {motion} argument, except '*.count()' function which
takes an {count} argument, and an optional {config} parameter.
Type: ~
(table) A metatable containing API functions
See: ~
|comment.opfunc.OpMotion|
|comment.config|
Usage: ~
>lua
local api = require('Comment.api')
local config = require('Comment.config'):get()
api.toggle.linewise(motion, config?)
api.toggle.linewise.current(motion?, config?)
api.toggle.linewise.count(count, config?)
api.toggle.blockwise(motion, config?)
api.toggle.blockwise.current(motion?, config?)
api.toggle.blockwise.count(count, config?)
-- Toggle current line (linewise) using C-/
vim.keymap.set('n', '<C-_>', api.toggle.linewise.current)
-- Toggle current line (blockwise) using C-\
vim.keymap.set('n', '<C-\\>', api.toggle.blockwise.current)
-- Toggle lines (linewise) with dot-repeat support
-- Example: <leader>gc3j will comment 4 lines
vim.keymap.set(
'n', '<leader>gc', api.call('toggle.linewise', 'g@'),
{ expr = true }
)
-- Toggle lines (blockwise) with dot-repeat support
-- Example: <leader>gb3j will comment 4 lines
vim.keymap.set(
'n', '<leader>gb', api.call('toggle.blockwise', 'g@'),
{ expr = true }
)
local esc = vim.api.nvim_replace_termcodes(
'<ESC>', true, false, true
)
-- Toggle selection (linewise)
vim.keymap.set('x', '<leader>c', function()
vim.api.nvim_feedkeys(esc, 'nx', false)
api.toggle.linewise(vim.fn.visualmode())
end)
-- Toggle selection (blockwise)
vim.keymap.set('x', '<leader>b', function()
vim.api.nvim_feedkeys(esc, 'nx', false)
api.toggle.blockwise(vim.fn.visualmode())
end)
<
*comment.api.comment.linewise*
*comment.api.comment.blockwise*
api.comment *comment.api.comment*
Provides API to (only) comment a region, on current-line, or with a
count using line or block comment string.
Every function takes a {motion} argument, except '*.count()' function which
takes an {count} argument, and an optional {config} parameter.
Type: ~
(table) A metatable containing API functions
See: ~
|comment.opfunc.OpMotion|
|comment.config|
Usage: ~
>lua
local api = require('Comment.api')
local config = require('Comment.config'):get()
api.comment.linewise(motion, config?)
api.comment.linewise.current(motion?, config?)
api.comment.linewise.count(count, config?)
api.comment.blockwise(motion, config?)
api.comment.blockwise.current(motion?, config?)
api.comment.blockwise.count(count, config?)
<
*comment.api.uncomment.linewise*
*comment.api.uncomment.blockwise*
api.uncomment *comment.api.uncomment*
Provides API to (only) uncomment a region, on current-line, or with a
count using line or block comment string.
Every function takes a {motion} argument, except '*.count()' function which
takes an {count} argument, and an optional {config} parameter.
Type: ~
(table) A metatable containing API functions
See: ~
|comment.opfunc.OpMotion|
|comment.config|
Usage: ~
>lua
local api = require('Comment.api')
local config = require('Comment.config'):get()
api.uncomment.linewise(motion, config?)
api.uncomment.linewise.current(motion?, config?)
api.uncomment.linewise.count(count, config?)
api.uncomment.blockwise(motion, config?)
api.uncomment.blockwise.current(motion?, config?)
api.uncomment.blockwise.count(count, config?)
<
api.insert *comment.api.insert*
Provides API to to insert comment on previous, next or at the end-of-line.
Every function takes an optional {config} parameter.
Type: ~
(table) A metatable containing API functions
See: ~
|comment.config|
Usage: ~
>lua
local api = require('Comment.api')
local config = require('Comment.config'):get()
api.insert.linewise.above(config?)
api.insert.linewise.below(config?)
api.insert.linewise.eol(config?)
api.insert.blockwise.above(config?)
api.insert.blockwise.below(config?)
api.insert.blockwise.eol(config?)
<
api.locked({cb}) *comment.api.locked*
Wraps the given API function with 'lockmarks' to preserve marks/jumps
Parameters: ~
{cb} (string) Name of API function
Returns: ~
(fun(motion:OpMotion)) Callback function
See: ~
|lockmarks|
|comment.opfunc.OpMotion|
Usage: ~
>lua
local api = require('Comment.api')
vim.keymap.set(
'n', '<leader>c', api.locked('toggle.linewise.current')
)
local esc = vim.api.nvim_replace_termcodes(
'<ESC>', true, false, true
)
vim.keymap.set('x', '<leader>c', function()
vim.api.nvim_feedkeys(esc, 'nx', false)
api.locked('toggle.linewise')(vim.fn.visualmode())
end)
-- NOTE: `locked` method is just a wrapper around `lockmarks`
vim.api.nvim_command([[
lockmarks lua require('Comment.api').toggle.linewise.current()
]])
<
api.call({cb}, {op}) *comment.api.call*
Callback function which does the following
1. Sets 'operatorfunc' for dot-repeat
2. Preserves jumps and marks
3. Stores last cursor position
Parameters: ~
{cb} (string) Name of the API function to call
{op} ("g@"|"g@$") Operator-mode expression
Returns: ~
(fun():string) Keymap RHS callback
See: ~
|g@|
|operatorfunc|
Usage: ~
>lua
local api = require('Comment.api')
vim.keymap.set(
'n', 'gc', api.call('toggle.linewise', 'g@'),
{ expr = true }
)
vim.keymap.set(
'n', 'gcc', api.call('toggle.linewise.current', 'g@$'),
{ expr = true }
)
<
==============================================================================
Language/Filetype detection *comment.ft*
This module is the core of filetype and commentstring detection and uses the
|lua-treesitter| APIs to accurately detect filetype and gives the corresponding
commentstring, stored inside the plugin, for the filetype/langauge.
Compound (dot-separated) filetypes are also supported i.e. 'ansible.yaml',
'ios.swift' etc. The commentstring resolution will be done from left to right.
For example, If the filetype is 'ansible.yaml' then 'ansible' commenstring will
be used if found otherwise it'll fallback to 'yaml'. Read `:h 'filetype'`
ft.set({lang}, {val}) *comment.ft.set*
Sets a commentstring(s) for a filetype/language
Parameters: ~
{lang} (string) Filetype/Language of the buffer
{val} (string|string[])
Returns: ~
(table) Returns itself
Usage: ~
>lua
local ft = require('Comment.ft')
--1. Using method signature
-- Set only line comment or both
-- You can also chain the set calls
ft.set('yaml', '#%s').set('javascript', {'//%s', '/*%s*/'})
-- 2. Metatable magic
ft.javascript = {'//%s', '/*%s*/'}
ft.yaml = '#%s'
-- 3. Multiple filetypes
ft({'go', 'rust'}, {'//%s', '/*%s*/'})
ft({'toml', 'graphql'}, '#%s')
<
ft.get({lang}, {ctype?}) *comment.ft.get*
Get line/block/both commentstring(s) for a given filetype
Parameters: ~
{lang} (string) Filetype/Language of the buffer
{ctype?} (integer) See |comment.utils.ctype|. If given `nil`, it'll
return a copy of { line, block } commentstring.
Returns: ~
(nil|string|string[]) Returns stored commentstring, if {lang} is not
recognized then returns native |commentstring|
Usage: ~
>lua
local ft = require('Comment.ft')
local U = require('Comment.utils')
-- 1. Primary filetype
ft.get('rust', U.ctype.linewise) -- `//%s`
ft.get('rust') -- `{ '//%s', '/*%s*/' }`
-- 2. Compound filetype
-- NOTE: This will return `yaml` commenstring(s),
-- as `ansible` commentstring is not found.
ft.get('ansible.yaml', U.ctype.linewise) -- `#%s`
ft.get('ansible.yaml') -- { '#%s' }
<
ft.contains({tree}, {range}) *comment.ft.contains*
Get a language tree for a given range by walking the parse tree recursively.
This uses 'lua-treesitter' API under the hood. This can be used to calculate
language of a particular region which embedded multiple filetypes like html,
vue, markdown etc.
NOTE: This ignores `tree-sitter-comment` parser, if installed.
Parameters: ~
{tree} (userdata) Parse tree to be walked
{range} (integer[]) Range to check
{start_row, start_col, end_row, end_col}
Returns: ~
(userdata) Returns a |treesitter-languagetree|
See: ~
|treesitter-languagetree|
|lua-treesitter-core|
Usage: ~
>lua
local ok, parser = pcall(vim.treesitter.get_parser, 0)
assert(ok, "No parser found!")
local tree = require('Comment.ft').contains(parser, {0, 0, -1, 0})
print('Lang:', tree:lang())
<
ft.calculate({ctx}) *comment.ft.calculate*
Calculate commentstring with the power of treesitter
Parameters: ~
{ctx} (CommentCtx)
Returns: ~
(nil|string) Commentstring
See: ~
|comment.utils.CommentCtx|
==============================================================================
Utilities *comment.utils*
CommentCtx *comment.utils.CommentCtx*
Comment context
Fields: ~
{ctype} (integer) See |comment.utils.ctype|
{cmode} (integer) See |comment.utils.cmode|
{cmotion} (integer) See |comment.utils.cmotion|
{range} (CommentRange)
CommentRange *comment.utils.CommentRange*
Range of the selection that needs to be commented
Fields: ~
{srow} (integer) Starting row
{scol} (integer) Starting column
{erow} (integer) Ending row
{ecol} (integer) Ending column
CommentMode *comment.utils.CommentMode*
Comment modes - Can be manual or computed via operator-mode
Fields: ~
{toggle} (integer) Toggle action
{comment} (integer) Comment action
{uncomment} (integer) Uncomment action
U.cmode *comment.utils.cmode*
An object containing comment modes
Type: ~
(CommentMode)
CommentType *comment.utils.CommentType*
Comment types
Fields: ~
{linewise} (integer) Use linewise commentstring
{blockwise} (integer) Use blockwise commentstring
U.ctype *comment.utils.ctype*
An object containing comment types
Type: ~
(CommentType)
CommentMotion *comment.utils.CommentMotion*
Comment motion types
Fields: ~
{line} (integer) Line motion (ie. 'gc2j')
{char} (integer) Character/left-right motion (ie. 'gc2w')
{block} (integer) Visual operator-pending motion
{v} (integer) Visual motion (ie. 'v3jgc')
{V} (integer) Visual-line motion (ie. 'V10kgc')
U.cmotion *comment.utils.cmotion*
An object containing comment motions
Type: ~
(CommentMotion)
U.get_region({opmode?}) *comment.utils.get_region*
Get region for line movement or visual selection
NOTE: Returns the current line region, if `opmode` is not given.
Parameters: ~
{opmode?} (OpMotion)
Returns: ~
(CommentRange)
U.get_count_lines({count}) *comment.utils.get_count_lines*
Get lines from the current position to the given count
Parameters: ~
{count} (integer) Probably 'vim.v.count'
Returns: ~
(string[]) List of lines
(CommentRange)
U.get_lines({range}) *comment.utils.get_lines*
Get lines from a NORMAL/VISUAL mode
Parameters: ~
{range} (CommentRange)
Returns: ~
(string[]) List of lines
U.unwrap_cstr({cstr}) *comment.utils.unwrap_cstr*
Validates and unwraps the given commentstring
Parameters: ~
{cstr} (string) See 'commentstring'
Returns: ~
(string) Left side of the commentstring
(string) Right side of the commentstring
U.parse_cstr({cfg}, {ctx}) *comment.utils.parse_cstr*
Parses commentstring from the following places in the respective order
1. pre_hook - commentstring returned from the function
2. ft.lua - commentstring table bundled with the plugin
3. commentstring - Neovim's native. See 'commentstring'
Parameters: ~
{cfg} (CommentConfig)
{ctx} (CommentCtx)
Returns: ~
(string) Left side of the commentstring
(string) Right side of the commentstring
*comment.utils.commenter*
U.commenter({left}, {right}, {padding}, {scol?}, {ecol?}, {tabbed?})
Returns a closure which is used to do comments
If given {string[]} to the closure then it will do blockwise comment
else linewise comment will be done with the given {string}
Parameters: ~
{left} (string) Left side of the commentstring
{right} (string) Right side of the commentstring
{padding} (boolean) Is padding enabled?
{scol?} (integer) Starting column
{ecol?} (integer) Ending column
{tabbed?} (boolean) Using tab indentation
Returns: ~
(fun(line:string|string[]):string|string[])
*comment.utils.uncommenter*
U.uncommenter({left}, {right}, {padding}, {scol?}, {ecol?})
Returns a closure which is used to uncomment a line
If given {string[]} to the closure then it will block uncomment
else linewise uncomment will be done with the given {string}
Parameters: ~
{left} (string) Left side of the commentstring
{right} (string) Right side of the commentstring
{padding} (boolean) Is padding enabled?
{scol?} (integer) Starting column
{ecol?} (integer) Ending column
Returns: ~
(fun(line:string|string[]):string|string[])
*comment.utils.is_commented*
U.is_commented({left}, {right}, {padding}, {scol?}, {ecol?})
Check if the given string is commented or not
If given {string[]} to the closure, it will check the first and last line
with LHS and RHS of commentstring respectively else it will check the given
line with LHS and RHS (if given) of the commenstring
Parameters: ~
{left} (string) Left side of the commentstring
{right} (string) Right side of the commentstring
{padding} (boolean) Is padding enabled?
{scol?} (integer) Starting column
{ecol?} (integer) Ending column
Returns: ~
(fun(line:string|string[]):boolean)
==============================================================================
Operator-mode API *comment.opfunc*
Underlying functions that powers the |comment.api.toggle|, |comment.api.comment|,
and |comment.api.uncomment| lua API.
OpMotion *comment.opfunc.OpMotion*
Vim operator-mode motion enum. Read |:map-operator|
Variants: ~
("line") Vertical motion
("char") Horizontal motion
("v") Visual Block motion
("V") Visual Line motion
*comment.opfunc.opfunc*
Op.opfunc({motion?}, {cfg}, {cmode}, {ctype})
Common operatorfunc callback
This function contains the core logic for comment/uncomment
Parameters: ~
{motion?} (OpMotion) If given 'nil', it'll only (un)comment
the current line
{cfg} (CommentConfig)
{cmode} (integer) See |comment.utils.cmode|
{ctype} (integer) See |comment.utils.ctype|
*comment.opfunc.count*
Op.count({count}, {cfg}, {cmode}, {ctype})
Line commenting with count
Parameters: ~
{count} (integer) Value of |v:count|
{cfg} (CommentConfig)
{cmode} (integer) See |comment.utils.cmode|
{ctype} (integer) See |comment.utils.ctype|
OpFnParams *comment.opfunc.OpFnParams*
Operator-mode function parameters
Fields: ~
{cfg} (CommentConfig)
{cmode} (integer) See |comment.utils.cmode|
{lines} (string[]) List of lines
{rcs} (string) RHS of commentstring
{lcs} (string) LHS of commentstring
{range} (CommentRange)
Op.linewise({param}) *comment.opfunc.linewise*
Line commenting
Parameters: ~
{param} (OpFnParams)
Returns: ~
(integer) Returns a calculated comment mode
Op.blockwise({param}, {partial?}) *comment.opfunc.blockwise*
Full/Partial/Current-Line Block commenting
Parameters: ~
{param} (OpFnParams)
{partial?} (boolean) Comment the partial region (visual mode)
Returns: ~
(integer) Returns a calculated comment mode
==============================================================================
Extra API *comment.extra*
Underlying functions that powers the |comment.api.insert| lua API.
extra.insert_below({ctype}, {cfg}) *comment.extra.insert_below*
Add a comment below the current line and goes to INSERT mode
Parameters: ~
{ctype} (integer) See |comment.utils.ctype|
{cfg} (CommentConfig)
extra.insert_above({ctype}, {cfg}) *comment.extra.insert_above*
Add a comment above the current line and goes to INSERT mode
Parameters: ~
{ctype} (integer) See |comment.utils.ctype|
{cfg} (CommentConfig)
extra.insert_eol({ctype}, {cfg}) *comment.extra.insert_eol*
Add a comment at the end of current line and goes to INSERT mode
Parameters: ~
{ctype} (integer) See |comment.utils.ctype|
{cfg} (CommentConfig)
vim:tw=78:ts=8:noet:ft=help:norl:
|