@@ -11,16 +11,16 @@ development tools (e.g. Clojure editor plugins and IDEs).
11
11
12
12
Right now ` orchard ` provides functionality like:
13
13
14
- * enhanced apropos
15
- * classpath utils (alternative for ` java.classpath ` )
16
- * value [ inspector] ( https://github.com/clojure-emacs/orchard/blob/master/doc/inspector.org )
17
- * Java class handling utilities
18
- * utilities for dealing with metadata
19
- * namespace utilities
20
- * fetching ClojureDocs documentation
21
- * finding function dependencies (other functions invoked by a function) and usages
22
- * function tracer
23
- * simple function profiler
14
+ - enhanced apropos
15
+ - classpath utils (alternative for ` java.classpath ` )
16
+ - value [ inspector] ( https://github.com/clojure-emacs/orchard/blob/master/doc/inspector.org )
17
+ - Java class handling utilities
18
+ - utilities for dealing with metadata
19
+ - namespace utilities
20
+ - fetching ClojureDocs documentation
21
+ - finding function dependencies (other functions invoked by a function) and usages
22
+ - function tracer
23
+ - simple function profiler
24
24
25
25
## Why?
26
26
@@ -30,9 +30,9 @@ and altered in each and every tool.
30
30
31
31
Having a common tooling foundation typically means:
32
32
33
- * Better foundation (e.g. more functionality, good documentation, etc) with more contributors
34
- * Less work for tool authors as they don't have to reinvent the wheel for every tool
35
- * Happier end users
33
+ - Better foundation (e.g. more functionality, good documentation, etc) with more contributors
34
+ - Less work for tool authors as they don't have to reinvent the wheel for every tool
35
+ - Happier end users
36
36
37
37
## Design
38
38
@@ -170,11 +170,11 @@ You can find a more in-depth explanation in this [post](https://lukas-domagala.d
170
170
171
171
The important implications from this are:
172
172
173
- * very fast
174
- * functions marked with meta ` :inline ` will not be found (` inc ` , ` + ` , ...)
175
- * redefining function vars that include lambdas will still return the dependencies of the old plus the new ones
176
- ( [ explanation] ( https://lukas-domagala.de/blog/clojure-compiler-class-cache.html ) )
177
- * does not work on AoT compiled functions
173
+ - very fast
174
+ - functions marked with meta ` :inline ` will not be found (` inc ` , ` + ` , ...)
175
+ - redefining function vars that include lambdas will still return the dependencies of the old plus the new ones
176
+ - [ explanation] ( https://lukas-domagala.de/blog/clojure-compiler-class-cache.html ) )
177
+ - does not work on AoT compiled functions
178
178
179
179
### Java 8 support
180
180
0 commit comments