From: Simon Ruderich Date: Wed, 13 May 2009 15:30:34 +0000 (+0200) Subject: vimrc: Indicate long lines with 'listchars'. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=51937524f49e7ce03cff2a5005359a5448a27151;hp=-c;p=config%2Fdotfiles.git vimrc: Indicate long lines with 'listchars'. --- 51937524f49e7ce03cff2a5005359a5448a27151 diff --git a/vimrc b/vimrc index d5555c4..a6ea6ae 100644 --- a/vimrc +++ b/vimrc @@ -106,9 +106,10 @@ if v:version >= 700 set cursorline endif -" Display tabs, trailing space and non breakable spaces. +" Display tabs, trailing space, non breakable spaces and long lines (when +" wrapping is enabled). set list -set listchars=trail:-,nbsp:! +set listchars=trail:-,nbsp:!,extends:> " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)