How to make vim display 0x0d 0x0a using the following symbols
? U+240D SYMBOL FOR CARRIAGE RETURN
? U+2424 SYMBOL FOR NEWLINE
https://stackoverflow.com/questions/18927672/newline-symbol-unicode-character
^MIt’s ugly
This effect is similar to notepad++
set conceallevel=2
syn match CR "\r" conceal cchar=?
hi clear Conceal
http://superuser.com/questions/382163/how-do-i-visualize-cr-lf-in-word
Is this the question you asked, LZ?
I didn’t read it carefully, but the problem description should be the effect you want. See if it can help you?