Indenting only one line
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
Richard Baldwin
- Posts: 2
- Joined: Wed May 28, 2003 9:32 pm
- Contact:
Indenting only one line
I want to indent only the first line of each paragraph (as old fashioned as this may be).
-
Richard Baldwin
- Posts: 2
- Joined: Wed May 28, 2003 9:32 pm
- Contact:
Index first line
This is quite over my head but I shall try my best.
Thank you!
Thank you!
Not a good idea - it looses the first character.Search for
\n[^\t]
Replace with
\n\t
Better:
search for
Code: Select all
\n\([^\t]\)Code: Select all
\n\t\1