I want you to comment out with #, but it becomes <!-->.
I set it as follows, but the result does not change.
What should I do?
if !exists('g:tcomment_types')
let g:tcomment_types = {}
endif
let g:tcomment_types['php'] = '// %s'
<?php
class Test
{
public $aaa;
}
press gcc
<?php
class Test
{
<!-- public $aaa; -->
}