外部から強制されたコーディング標準により、4 つの辺すべてに境界線を揃えてコード コメントを記述する必要があります。
Emacsで次のことを行う最も簡単な方法は何ですか?
- 一部のテキストをこの形式のブロック コメントに変換します
- ブロック コメント内のテキストを編集し、Emacs に正しくリフローさせる
コメント形式の例:
#*****************************************************************************#
#* This is a block comment. It has right-aligned borders. *#
#* *#
#* It can have separate paragraphs. Text in a long paragraph flows from one *#
#* line to the next with one space of internal padding. *#
#* *#
#* The right hand border is at char 78 *#
#*****************************************************************************#
sub MySub
{
#***************************************************************************#
#* The left hand edge of the comment is aligned with the current code *#
#* block, but the right hand border is still at char 78 *#
#***************************************************************************#
my $var = 3;
}
auto-fill-mode
それ自体では、右側の境界は保持されません。