I would like to change the definition of the paragraph in such a way that every line to be considered as a paragraph. As I understand from the documentation, one should change the variables paragraph-start
and paragraph-separate
for this purpose. I tried the following, but it doesn't work. (I have evaluated the following in the scratch buffer, but when using forward-paragraph
, the usual definition of the paragraph is used by forward-paragraph
).
(setq paragraph-start "\n"
paragraph-separate "\n")
(setq paragraph-start "" paragraph-separate "\n")
, but it looks almost identical tonext-line
. Why do you need to do this? – wvxvw Aug 30 '15 at 14:22(setq paragraph-start "" paragraph-separate "")
, but it has no effect. The old definition of paragraph is still used. – Name Aug 30 '15 at 14:24"\n"
seems to work. – Name Aug 30 '15 at 14:32[email protected]
. The implementor of bidi in Emacs, and an expert on this kind of thing, reads that mailing list and often answers questions. Of course, you might also get a good answer here. – Drew Aug 30 '15 at 15:28"\n"
works then please, someone, post that as an answer. Comments can be deleted at any time. OP: You can accept your own answer. – Drew Dec 26 '19 at 23:29