Re: ANN: VimClojure v2.1.2 released

2009-08-16 Thread ogcraft
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

Re: How to splitt a string by words?

2009-08-11 Thread ogcraft
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 to splitt a string by words?

2009-08-11 Thread ogcraft
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

Re: the inverse function of load or load-file

2009-06-24 Thread ogcraft
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

the inverse function of load or load-file

2009-06-23 Thread ogcraft
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. --~--~