On Saturday, April 18, 2015 at 2:59:26 PM UTC+3, Christian Brabandt wrote: > On Sa, 18 Apr 2015, Christian Brabandt wrote: > > > We could probably add a flag to 'cpoptions' to change this behaviour, > > but we wouldn't change the behaviour by default, since this would be > > backward incompatible (and in fact I have gotten used to it and like it > > that way). > > I made a patch: > https://github.com/chrisbra/vim-mq-patches/blob/master/cpo_changeword > > Mit freundlichen Grüßen > Christian > -- > Mit den Ansichten, wenn sie aus der Welt verschwinden, gehen > oft die Gegenstände selbst verloren. Kann man doch im höheren Sinne > sagen, dass die Ansicht der Gegenstand sei. > -- Goethe, Maximen und Reflektionen, Nr. 1073
Thanks for the patch! Conceal will not show line terminators, because "\r" does not match CR, and "\n" does not match LF. For example this will not work: set conceallevel=2 concealcursor=nciv syntax match CR "\r" conceal cchar=→ syntax match LF "\n" conceal cchar=↓ hi clear Conceal hi Conceal -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
