markdown-mode
段落全体を埋めるのは非常に得意ですが、本当に気になる欠点が1つあります。段落に2つのスペースで終了する行が含まれている場合、それは充填を開始するだけで、その行は充填されません。
たとえば、2行目が2つのスペースで終了する次の例を考えてみます。
If I hit M-q right here at the start, this line will get broken into two, but the others won't.
If I hit M-q right here only the NEXT line will get split. All because this line here ends in two spaces.__
If I hit M-q right here, this line will get broken into two, but the others won't.
例はそれ自体を説明しています。M-q
各行の先頭でヒットしても、次のように残っています。
If I hit M-q right here at the start this line will get broken into
two, but the others won't.
If I hit M-q right here only the NEXT line will get split. All because this line here ends in two spaces.__
If I hit M-q right here, this line will get broken into two, but the
others won't.
私が欲しいのはこれです:
If I hit M-q right here at the start this line will get broken into
two, but the others won't. If I hit M-q right here only the NEXT line
will get split. All because this line here ends in two spaces.__
If I hit M-q right here, this line will get broken into two, but the
others won't.
Q:このようにするにはどうすればよいfill-paragraph
ですか?
明らかに、markdown-mode
真ん中の行全体を段落の区切りと見なしています。