web-mode中html注释的缩进问题

<!-- 
     按tab缩进在web-mode html-mode前面都是空5个字符,这个好长啊
     怎么设成前面只空2个字符
-->

试了几个变量(setq web-mode-markup-indent-offset 1) (setq web-mode-code-indent-offset 1) (setq web-mode-indent-style 1) (setq web-mode-comment-style 1) (setq-default tab-width 2),发现都没有效果,于是来问下这个html注释的缩进是从那里改的?

另外用doom试了下,doom的html注释缩进前面是空0个字符,但也没找着是在那里设置的 图片

这个缩进宽度在函数 web-mode-indent-line 中写死了:https://github.com/fxbois/web-mode/blob/8ef47935d638902ba35a557cae5edd6ab6ab1346/web-mode.el#L8361

       (t
        (setq offset (+ offset 5)))

感谢,确实是这里,写死了不好改,我暂用改elisp源文件,然后byte-compile-file编译elc文件的办法先用着