Alexander Agibalov wrote: > > If I have a numbered list like the following one: > 1. one > 2. two > 3. three > 4. four > how do I convert it to the following: > 1. one > * two > * three > 2. four > ?
There is no automated way to do this. Manually you need: [1] to add a list inside "1.one"; [2] to select items "2.two", "3.three" (i.e. select "2.two", then use "Esc ->" to extend the selection) and then to copy both items to the clipboard; [3] to select the empty item of the newly inserted list; [4] to paste the content of the clipboard. Of course, if I had to do that all the time, I would write a command in Java[tm] (or may be just a macro) which would ``indent'' and ``unindent'' list items.

