Is there a way to covert such block of lines

line1  
line2 
linen

into

1. line1
2. line2
n. linen

Using Emacs org mode

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

don't know if there is a direct way, haven't heard of it yet at least. But one approach would be to use string-rectangle (C-x r t) to prepand 1. to all lines and then hit C-c C-c to update the numbering.

For string-rectangle you would put point and mark the following way:

v---mark
line1 with some text
line2 with more text
<---point

After M-x: string-rectangle: 1. you will get:

1. line1 with some text
1. line2 with more text

Hitting C-c C-c will give you the correct numbering!

Easier because it gives you visual feedback is to enable CUA-mode and use C-return to create a rectangle selection, then you can start typing on all lines in parallel. See also this video on youtube.

link|improve this answer
Make sure you check out CUA rectangles (like described on emacs-fu), they are a lot nicer to work with than vanilla rectangles. But using rectangles for the problem above is the best working solution :) – monotux Sep 23 '10 at 7:17
feedback

the shortest way I know of is: highlight the lines, including their newline character,

line1
line2
line3

Then execute M-x org-ctrl-c-minus (press C-c -) and you will get

- line1  
- line2 
- line3

Then run M-x org-shiftright (press <S-right>) twice and you get the desired

1. line1  
2. line2 
3. line3
link|improve this answer
1  
When I do C-c -, it only inserts - on the first line, the following lines are just indented. – Liam Jan 22 at 16:28
Select the region before pressing C-c -. – SabreWolfy Feb 16 at 9:35
With org 7.8.06, C-c - on the selected region only inserts the - on the first line. The version of org I was using previously must have behaved differently because of my comment above. – SabreWolfy Apr 7 at 19:24
Use C-u C-c - to insert a - at the start of each line in the selected region. From the org help in Emacs: "If it is normal text, change region into an item. With a prefix argument ARG, change each line in region into an item." – SabreWolfy Apr 7 at 19:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.