Closed GoogleCodeExporter closed 9 years ago
This is not a Vim issue. You're using a backslash inside double quotes, so
you'd need to escape the backslash. Or, change the double quotes to single. All
these work fine for me:
:echo split("one.two", '\V.')
:echo split("one.two", '\.')
:echo split("one.two", "\\V.")
Original comment by fritzoph...@gmail.com
on 12 Jan 2014 at 6:11
oh god, I'm so sorry, I could swear I tried all the variants possible.
Escaping, single quotes, double quotes, magic, no magic.... . Yeah, it works
great, I just made a derp. Thank you very much!
Original comment by juliangr...@gmail.com
on 12 Jan 2014 at 10:13
Original comment by brammool...@gmail.com
on 12 Jan 2014 at 12:07
Original issue reported on code.google.com by
juliangr...@gmail.com
on 12 Jan 2014 at 5:52