On Dec 26, 2008, at 4:01 PM, kub wrote:

I've seen a topic about using vim with ikarus.
Any success in this area (mainly interested in quickfix)?

Sorry, but, quick fix for what?  If you're talking about
library file extension (e.g., ".sls"), then you can add
the following to your ~/.vim/filetype.vim

if exists("did_load_filetypes")
    finish
endif
augroup filetypedetect
    au! BufRead,BufNewFile *.sls       setfiletype scheme
    au! BufRead,BufNewFile *.sps       setfiletype scheme
    au! BufRead,BufNewFile *.ss        setfiletype scheme
    au! BufRead,BufNewFile *.scm       setfiletype scheme
augroup END

Is there anything else?

Aziz,,,

Reply via email to