text - Line Break not Appearing in Vim -


please consider following problem. using text file, trying set tab-deliminated file. should this, in vim:

enter image description here

note there 1, followed tab (^i, appearing in light blue above), , text of website.

but when open same file in textedit, this:

enter image description here

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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -