if i write "// zig fmt: off" with indent in my code block like this:
// block_1 {{{
// zig fmt: off
// block_2 {{{
// very strange comment
// }}}
// zig fmt: on
// }}}
if i try zig fmt - zig just remove indent in line "// zig fmt: off". but i use folding blocks (by indent) in editor and i want see text like ```
// block_1 {{{
// }}}
and not
// block_1 {{{
// zig fmt: off
// }}}
and not ```
// zig fmt: off
// block_1 {{{
// }}}
it does not make sense....