endif
" Display tabs, trailing space, non breakable spaces and long lines (when
-" wrapping is enabled).
+" wrapping is disabled).
set list
set listchars=trail:-,extends:>
if v:version >= 700
syntax enable
" Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
-" <antoine.mechelynck@gmail.com> from the Vim mailing list.
-" It can easily be disabled if necessary with :2match (in Vim >= 700).
+" <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
+" disabled when necessary with :2match (in Vim >= 700).
if v:version >= 700
2match Todo /\%>78v./
else