Re: Overview of diretories of $HOME/.vim

2007-02-20 Thread Kai Weber
* A.J.Mechelynck [EMAIL PROTECTED]: ~/.vim/autoload/*.vim load-on-demand scripts for functions of the form scriptname#Funcname() ~/.vim/colors/*.vim colorschemes [...] Great list! Thank you very much! Kai -- * http://www.glorybox.de/ PGP 1024D/594D4132 B693 5073 013F

Overview of diretories of $HOME/.vim

2007-02-19 Thread Kai Weber
Hello, where can I find an overview of the $HOME/.vim directory hierarchie? I have not found an overview, seems I have to read all the vim documentation for :help ftplugin, :help initialization and so on. I am searching for a short overview like foo -- contains files for filetypes foo/bar --

Re: How to replace CR with LF

2006-06-27 Thread Kai Weber
* Michael Naumann [EMAIL PROTECTED]: I'm curious though - is there any way to substitute CR with LF using regexp's? Yes there is, strange as it may seem: s/\r/\r/ does it Can somebody enlighten me why this works? Does vim replace wrong \r with corrent \r? Kai -- *