text - Line Break not Appearing in Vim -
please consider following problem. using text file, trying set tab-deliminated file. should this, in vim:
note there 1, followed tab (^i, appearing in light blue above), , text of website.
but when open same file in textedit, this:
where spurious line break coming from? can't find in vim.
if place cursor on space right after url , use ga
command, you'll notice it's unicode line separator (its hex code show 2028).
so what's happening vim render regular space, other editors line break. replace character regular space , solve this.
Comments
Post a Comment