例如:
// abc
// def
fn test() {}
变成
// abc ...
fn test() {}
试了 hide-comnt, 它会隐藏所有 comment, 而不是保留一行做为提示, 导致编辑时会意外的编辑到隐藏的 comment 区域
例如:
// abc
// def
fn test() {}
变成
// abc ...
fn test() {}
试了 hide-comnt, 它会隐藏所有 comment, 而不是保留一行做为提示, 导致编辑时会意外的编辑到隐藏的 comment 区域
hideshow.el比较接近,但是hs-hide-all
的功能是隐藏code block,有个开关hs-hide-comments-when-hiding-all
控制隐藏comment。可以hack一下hs-hide-all
做这个事情。
你可以写个函数
(defun my-fold-all-comments ()
(interactive)
(hs-minor-mode 1)
(save-excursion
(goto-char (point-min))
(while (comment-search-forward (point-max) t)
(when (nth 4 (syntax-ppss))
(goto-char (nth 8 (syntax-ppss)))
;; (hs-hide-all)
(treesit-fold-close)
(forward-comment 1)))))
然后哪个语言需要,就启动的时候hook一下,依赖treesit-fold,所以要看下那个项目支持的语言。如果想取消就treesit-fold-open-all。hs-hide-all有的地方会卡,所以就换treesit-fold-close了,其他的我也不精通,再找大神帮你改吧,我自己试了下python和Java,能正常工作。