Thanks. It looks very impressive.
I'm using the VIM for all my development.
But could you point me to a clear/understandable explanation how to
use VimClojure. I found how to install and configure it but have no
idea how to start using.
On Jul 26, 12:09 pm, Meikel Brandmeyer wrote:
> Dear vimmin
Thanks
On Aug 11, 4:27 pm, sross wrote:
> clojure.contrib.str-utils/re-partition is what you are looking for;
>
> (re-partition #"\w+" " a word and another word1 ")
>
> -> (" " "a" " " "word" " " "
How can I split a string, but not to drop witespaces.
Like this:
" a word and another word1 " --> (" ", "a", " ", "word", " ",
"and", " ", "another", " ", "word1", " ").
Thanks in advance.
--~--~-~--~~~---~--~~
You received this message because you are subs
source for details on
> print-dup.
>
> Rgds, Adrian.
>
> On Tue, Jun 23, 2009 at 4:11 PM, ogcraft wrote:
>
> >
> > Dear all,
> > Is there an inverse function of load or load-file.
> > I mean the "save" function which writes the clojure varia
Dear all,
Is there an inverse function of load or load-file.
I mean the "save" function which writes the clojure variables or
entire workspace context (in textual form) to the file?
That we can load-file on such file and get the same variables as when
"save" was originally invoked.
--~--~