| Zaba_ | is ocllaborative editing possible with vim? s/oc/co/ gobby sucks.. |
| rphillips | Zaba_: perhaps if you used 'screen' |
| Zaba_ | rphillips, i meant like gobby but wiithout :q! |
| Zathrus | Zaba_: vim doesn't have that ability |
| Zaba_ | Zathrus, maybe any plugins? |
| roby | jamessan: that's the one, thanks! |
| chovy | how do i remove double line spacing? s:\r+:\r:g says \r+ not found. |
| samuel-veyre | Hello, I use the extension "viewsourcewith" for Firefox in order to edit local html files. But I don't have the color syntax. Any idea is welcome. "viewsourcewith" uses gvim of course. |
| chovy | samuel-veyre: set syntax enable |
| Zathrus | chovy: escape the + as a start |
| chovy | Zathrus: why's that? |
| Zaba_ | samuel-veyre, did you try to set highlighting manually? |
| Zathrus | chovy: uh, because otherwise it's a literal +? |
| chovy | still get pattern \r\+ not found |
| samuel-veyre | Zaba_, no |
| Zaba_ | :set filetype=html or xml IIRC |
| chovy | Zathrus: is that a vim thing? + is usually a special char in regex |
| Zaba_ | xml for xhtml ;-) |
| Zathrus | chovy: :he pattern and it dates back to vi (or, more likely, ex) |
| mgedmin | chovy: search for \n, not \r but keep \r in the replacement part |
| kolla | :%s:\n\+:\r:g |
| Zaba_ | samuel-veyre, ^ samuel-veyre, :set filetype=html |
| samuel-veyre | I am trying |
| Zaba_ | should work, works here if i open html file |
| samuel-veyre | Doesn't work in my case ... |
| chovy | mgedmin: worked, thanks. |
| samuel-veyre | even with xml |
| Zaba_ | do you have html highlighting? |
| chovy | so i have to replace special chars in the match part of the pattern. :set ft=xhtml |
| Zaba_ | chovy, quite same |
| samuel-veyre | let me try :filetype on first :-) |