// 1. Similar to this formatted
// list in this paragraph.
I have the following settings:
formatoptions=croqln
comments=://
formatlistpat=^\s*\d\+[\]:.)}\t ]\s*
These options are not working. The second line of the numbered item
is beginning directly underneath the '1'.
The problem is that the pattern /^\s*\d\+[\]:.)}\t ]\s*/ doesn't match
'// 1. Similar to this formatted' - the leading comment characters
confuse it.
:let &flp='^\s*\%(\/[\/*]\s*\)\=\d\+[\]:.)}\t ]\s*'
does a better job, but still messes up:
// 1. Similar to this formatted list in
// this paragraph
This is as far as I can get with it at the moment... someone else
might know more about it and be able to take it from there...
~Matt