/usr/share/doc/libcomplete-clojure/html/README.html is in libcomplete-clojure 0.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Clojure-complete is an symbol completion library for Clojure. The code is adapted from</title>
</head>
<body><p>Clojure-complete is an symbol completion library for Clojure. The code is adapted from
<a href="http://github.com/jochu/swank-clojure">jochu/swank-clojure</a>.</p>
<h2>Examples</h2>
<pre><code>(use 'complete.core)
(completions "al" 'clojure.core)
=> ("alength" "alias" "all-ns" "alter" "alter-meta!" "alter-var-root")
(completions "jio/make" 'clojure.core)
=> ("jio/make-input-stream" "jio/make-output-stream" "jio/make-parents" "jio/make-reader" "jio/make-writer")
(completions "clojure.core")
=> ("clojure.core" "clojure.core.protocols" "clojure.core.ArrayChunk" "clojure.core.ArrayManager" "clojure.core.IVecImpl" "clojure.core.Vec" "clojure.core.VecNode" "clojure.core.VecSeq" "clojure.core.protocols.InternalReduce")
</code></pre>
<h2>Running Tests</h2>
<pre><code>lein with-profile 1.2:1.3:1.4 test
</code></pre>
</body>
</html>
|