Questions tagged [paragraphs]
The paragraphs tag has no summary.
17 questions
1 vote
2 answers
78 views
How to break CJK only after punctuation, not between characters?
$ emacs file.html We have one long line, with no ASCII whitespace to break on. Before: weeklyOSM 的想法是蒐集來自世界各地,與 OSM 相關的新聞,處理這些新聞並將其翻譯成盡可能多種語言。這應該有助於讓社群知道所有消息並克服語言障礙。 Do M-q (fill-paragraph), getting:...
0 votes
1 answer
123 views
Evil-mode's delete inner-sentence command deletes a paragraph
Evil's evil-inner-sentence seems to select an entire paragraph. For instance, if I do dis somewhere in a paragraph it deletes the entire paragraph instead of just the sentence. This is also the case ...
3 votes
1 answer
357 views
How to select/mark a whole paragraph in org-mode?
I have the following paragraph inside an .org file: Observation: Currently, this feature is not part of the last stable release (version 2.2.4). Thus, users can only access it while running the ...
2 votes
1 answer
776 views
fill-paragraph on multiple paragraphs at once
I often cut and paste non "filled" text into text files (mostly in org-mode). I then have to go line by line and call fill-paragraph or org-fill-paragraph in org-mode to clean up the text. ...
0 votes
0 answers
171 views
Pasting text into Emacs but preserving empty lines between paragraphs
When I copy text from another application and paste it into Emacs it removes all formatting including the empty lines between paragraphs. I would like to paste into Emacs and preserve the empty lines. ...
3 votes
3 answers
469 views
Is it possible to shuffle paragraphs?
I'd like to be able to quickly "shuffle" the order in which all paragraphs in a region occur. Can this be easily accomplished in emacs? For example, consider the following region. Hello world. This ...
1 vote
2 answers
252 views
Count the number of paragraphs
There are plenty of ways to count lines, words, and characters in Emacs. For instance, invoking M-= (AKA count-words-region) does that very thing on a given region. However, I am having trouble ...
2 votes
2 answers
202 views
Navigate to a certain paragraph number
How can I navigate to a certain paragraph number? If I want to move to the 33rd line in a file, I execute M-x goto-line <RET> 33, but there does not seem to be an equivalent goto-paragraph ...