Laurent Petit

Results 7 issues of Laurent Petit

A feature I'd like to have in Counterclockwise is "Textmate-completion" style. e.g. asking completion for "sbc" would match "set-bundle-classloader!" var.

Consider the following command: ``` clojure => (pprint (completions "clojure.core")) nil ("clojure.core" "clojure.core.ArrayChunk" "clojure.core.ArrayManager" "clojure.core.IVecImpl" "clojure.core.Vec" "clojure.core.VecNode" "clojure.core.VecSeq" "clojure.core.protocols" "clojure.core.protocols.InternalReduce") ``` first is a namespace, then some classes, then a...

To serve the purpose of several kinds of "displays" (console, editors, etc.), it would be interesting to not drop "too early" information on the results. E.G. once a var, a...

It is possible that a user has 'used (or 'aliased) in the current namespace another namespace, but is triggering completion with the fully qualified namespace (maybe he doesn't remember the...

a feature Counterclockwise had is completion for java interop calls. e.g. ".toSr" would get suggestions for ".toString", etc. There are several things to discuss about the detail. Side note: question...

The README has been updated with usage examples. Before continuing working on the PR, I'd like, if possible, some remarks / criticisms on the work done so far. The PR...

Hello, I'm trying to get some clojure.test tests be executed via maven tycho surefire tests plugin phase. That way, the tests have access to the right classpath, potentially seeing eclipse...