Re: VIM on a small embedded system

2014-12-06 Thread Oliver Rath
Hi Meino, you can use the "minimal" flag to build a small vim variant. Additionally, on gentoo you can build app-editors/e3, which is an vi-clone, written in assembler (arm-code, too). If you only want to disable some features, the hints of Tom are fine. Additionally, syntax highilghting is a thi

folding output of tree command?

2013-06-26 Thread Oliver Rath
Hi list, Im looking for some expression to fold the output of tree command, i.e.: ├── opt ├── run -> /run ├── spool │ ├── anacron │ ├── asterisk [error opening dir] │ ├── cron │ │ ├── atjobs │ │ ├── atspool │ │ └── crontabs │ ├── cups [error opening dir] │ ├── libreoffice │ │ └── uno_packages │ ├

Re: CoVim plugin

2013-05-23 Thread Oliver Rath
Hi list! Am 16.05.2013 14:13, schrieb Lucas Tadeu Teixeira: > I stumbled upon this while on reddit. It's a plugin for collaborative > work on VIM. > Like Google Docs, but for VIM (though it doesn't have the cloud storage part). > > Here is the link: > http://www.fredkschott.com/post/50510962864/i

Re: How to replace "\" to "\\"

2011-01-27 Thread Oliver Rath
Maybe its easier, to reduce \\ to \ and expand THEN all \ to \\. Hth Oliver Am 26.01.2011 03:24, schrieb Wayne Young: > Hi, all, > > I have a text containing both "\" and '\\". Now I want to replace all > the "\" to "\\", but leave those have already been "\\" alone. How can I > achieve this?