Hi Meikel,

I am running Vim 7.2 on Windows XP and am not able to get the completion
working in VimClojure.  I get errors when trying to edit a .clj file.  These
errors always occur unless I comment out the code in clojure.vim that adds
the completions.  The errors I'm getting with VimClojure 1.3.0 are below.  I
got similar errors in the previous version of VimClojure as well (though not
identical due to the addition of AddCompletion), so this isn't new to 1.3.0.

Error detected while processing function vimcloj...@addcompletions.
.vimcloj...@addpathtooption:
line     7:
E539: Illegal character <F>: complete+=kC:\Program\
Files\Vim\vimfiles\ftplugin\clojure\completions-clojure.core.txt
E539: Illegal character <F>: complete+=kC:\Program\
Files\Vim\vimfiles\ftplugin\clojure\completions-clojure.set.txt
E539: Illegal character <F>: complete+=kC:\Program\
Files\Vim\vimfiles\ftplugin\clojure\completions-clojure.xml.txt
E539: Illegal character <F>: complete+=kC:\Program\
Files\Vim\vimfiles\ftplugin\clojure\completions-clojure.zip.txt

Do you have any idea what the problem is?

Thanks,
Justin

On Thu, Jan 1, 2009 at 10:23 AM, Meikel Brandmeyer <m...@kotka.de> wrote:

> Dear vimming Clojurians,
>
> a long overdue release of VimClojure is available. This is
> mainly a bugfix and maintenance release. It brings the
> highlighting, indenting and completion up-to-date with
> current Clojure. Highlighting for contrib is there for a few
> modules, but it's far from being complete.
>
> One new feature worth mentioning is the conditional
> highlighting. Vim tries to figure at, which namespaces
> are required/used and dynamically adds highlighting
> for the included commands.
>
> Example:
>
> (ns foo.bar
>  (:use [clojure.contrib.def :only (defvar)]))
>
> This adds highlighting for:
> - clojure.contrib.def/defvar and
> - defvar
>
> (But not for eg. defvar-!)
>
> (ns foo.bar
>  (:require [clojure.contrib.def :as d]))
>
> This adds highlighting for:
> - clojure.contrib.def/defvar and
> - d/defvar and
> - d/defvar-
>
> (But not for defvar!)
>
> For multiple-file namespaces a similar :use/:require
> directive must be put in a comment at the file header
> for now. So it's still experimental.
>
> Thanks for all the feedback on issues and improvements!
>
> The release may be found at the usual spot:
>  http://kotka.de/projects/clojure/vimclojure.html
>
> Sincerely
> Meikel
>
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to