Re: more vimclojure

2009-04-29 Thread Mitch
I'd like to add how great I think VimClojure is. It's truly an amazing environment and I don't think I'd be able to enjoy clojure as much without it. I'm too committed to vim to learn emacs for a new language. Thanks a lot Meikel! On Apr 29, 10:13 am, Meikel Brandmeyer wrote: > Hi Adrian, > >

Re: update-in wildcards?

2009-04-12 Thread Mitch
(use '[clojure.contrib.generic.functor :only (fmap)]) (defn update-in-wildcard "Like update-in, but with :* as a wildcard matcher" ([m [k & ks] f & args] (condp = [(= k :*) (boolean ks)] [true true] (fmap #(apply update-in-wildcard % ks f args) m) [true false] (fmap f m) [fa

Find the function you need

2009-04-01 Thread Mitch
all-ns Binding *in* and *out* stops any IO functions from messing up the search. There's probably still ways this could be dangerous though, depending on the given args. Hope someone finds this useful or improves upon it. -Mitch --~--~-~--~~~---~--~~ You

Re: making code readable

2008-12-30 Thread Mitch
to be sure you really mean to in that situation. Plus it'd be a good coding exercise. -Mitch On Dec 30, 12:50 am, "Mark H." wrote: > On Dec 29, 1:15 pm, "Mark Volkmann" wrote: > > > It's early enough in the life of Clojure that we haven't develo

Re: First Release of Chimp available

2008-10-08 Thread Mitch
I've been using chimp a little bit, and it works pretty well except for the \ef command. It gives me the following error: E119: Not enough arguments for function: 31_EvalFile All the other commands work fine though! Thanks for the plugin! -Mitch On Aug 18, 3:47 pm, Meikel Brandmeyer &l

GUIs in Clojure

2008-10-08 Thread Mitch
eally an event driven GUI program (just a nice display for his simulation). Has anyone tried using of the GUI building tools for Java with clojure? I feel like these could help a lot, but I'm not sure. Thanks, Mitch --~--~-~--~~~---~--~~ You received this message