Skip to content

cotrCommentMulti

Creates a multi-line comment

Aliases:

  • cotrCommentMulti
  • multiLineComment
  • commentMultiLine
  • blockComment

cpp

/*
* Your comment here
*/

csharp

/*
* Your comment here
*/

dart

/*
* Your comment here
*/

go

/*
* comment
*/

haskell

{-
Your comment here
-}

java

/*
* Your comment here
*/

javascript

/*
* Your comment here
*/

kotlin

/*
* Your comment here
*/

markdown

<!--
Your comment here
-->

perl

=begin
Your comment here
=end

php

/*
* Your comment here
*/

powershell

Terminal window
<#
Your comment here
#>

python

'''
Your comment here
'''

r

comment

ruby

=begin
Your comment here
=end

rust

/*
* comment
*/

scala

/*
* Your comment here
*/

shellscript

Terminal window
: <<'END'
Your comment here
Your comment here
Your comment here
END

swift

/*
* Your comment here
*/

typescript

/*
* Your comment here
*/

typescriptreact

{/*
Your comment here
Your comment here
Your comment here
*/}