Am 02.03.2011 10:51, schrieb Nicolas:
> Hello,
>
> Rainer Stengele <rainer.stengele@online.de> writes:
>
>> I do not understand why when pressing TAB being at
point ^:
>>
>> - item
>>
>> ^
>>
>> results in
>>
>> - item
>>
>> ^
>>
>>
>> but having
>>
>>
>> - item
>> TEXT
>> ^
>>
>> and pressing TAB results in
>>
>> - item
>> TEXT
>> ^
>>
>> How can I get the indentation same as with empty lines?
>
> You can't. Once TEXT is typed at column 0, by definition,
the list
> before is over, and indentation reflects that. And this
makes sense: how
> could an user end a list if all his text was eventually
being inserted
> inside the list?
>
> On the other hand, if no text is typed yet, like in your
first case, the
> list isn't over, and TAB will indent line into the last
item of the
> list, as if you had typed C-j.
>
> I hope it is clearer now.
>
> Regards,
>
>
> -- Nicolas
Nicolas, thank you for explaining.
Well, it still bugs me.
Many times I start with something like
**** headline
item1
Text belonging to item1
Text belonging to item1
Text belonging to item1
item2
Text belonging to item2
Text belonging to item2
Text belonging to item2
and then later want to bring in more structure,
making item1 and item2 a list item.
I would then expect to get the "Text belonging to" lines being
indented as in
**** headline
- item1
Text belonging to item1
Text belonging to item1
Text belonging to item1
- item2
Text belonging to item2
Text belonging to item2
Text belonging to item2
but I get this:
**** headline
- item1
Text belonging to item1
Text belonging to item1
Text belonging to item1
- item2
Text belonging to item2
Text belonging to item2
Text belonging to item2
of course I can indent via macros or manually, I just don't find
the behaviour ok.
Regards,
-- Rainer