emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/inf-clojure f3c1de4a43 2/3: Replace mentions of clojure-co


From: ELPA Syncer
Subject: [nongnu] elpa/inf-clojure f3c1de4a43 2/3: Replace mentions of clojure-complete with incomplete
Date: Mon, 11 Jul 2022 01:58:59 -0400 (EDT)

branch: elpa/inf-clojure
commit f3c1de4a43f8cb6dbd6caf919665057db04321a4
Author: Bozhidar Batsov <bozhidar@batsov.dev>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Replace mentions of clojure-complete with incomplete
---
 README.md | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/README.md b/README.md
index d919ba209e..391c0a550f 100644
--- a/README.md
+++ b/README.md
@@ -385,13 +385,13 @@ Code completion is a tricky aspect if you are trying to 
be as close to
 a generic REPL as possible. Planck and lumo REPL implementations
 explicitly provide completion functions in their REPL namespaces. For
 clojure, you will need to have a library on your classpath. If you are
-using lein, you already have
-[clojure-complete](https://github.com/ninjudd/clojure-complete). You
+using a recent version of Leiningen, you already have
+[incomplete](https://github.com/nrepl/incomplete). You
 could alternatively use `compliment {:mvn/version "0.3.10"}`.
 
 ```emacs-lisp
-;; for clojure-complete
-(inf-clojure-update-feature 'clojure 'completion "(complete.core/completions 
\"%s\")")
+;; for incomplete
+(inf-clojure-update-feature 'clojure 'completion "(incomplete.core/completions 
\"%s\")")
 
 ;; or
 ;; for compliment
@@ -401,17 +401,14 @@ could alternatively use `compliment {:mvn/version 
"0.3.10"}`.
 
 If you give a form for the completion form, it is your responsibility
 to ensure that this namespace is on the classpath and required. If
-using lein, this is done for you with clojure-complete. If adding
-compliment, the following sample deps.edn can conveniently add the dep
-to your program.
-
-Sample deps.edn:
+using Leiningen, this is done for you with `incomplete`. If adding
+`compliment`, the following sample `deps.edn` can conveniently add the dep
+to your program:
 
 ```clojure
 {:aliases {:compliment {:extra-deps {compliment {:mvn/version "0.3.10"}}}}}
 ```
 
-
 Use the startup command: `clojure -A:compliment`. Then require the ns
 once so that the completion machinery will work: `(require
 'compliment.core)`. Now tab completion should work.
@@ -422,7 +419,7 @@ to customization. Not only you can `setq` the customary
 `inf-clojure-completion-form-planck` and
 `inf-clojure-completion-form-joker` - the form to send to the REPL -
 but you can also use `inf-clojure-completions-fn` for specifying a
-function that given the REPL response should return elisp data
+function that given the REPL response should return Elisp data
 compatible with
 
[`completion-at-point-functions`](https://www.gnu.org/software/emacs/manual/html_node/elisp/Completion-in-Buffers.html).
 For more info run `M-x describe-variable RET
@@ -434,7 +431,7 @@ 
it](https://github.com/clojure-emacs/cider/blob/3e9ed12e8cfbad04d7618e649322765d
 
 For an optimal Lumo experience the `-d` needs to be passed to Lumo
 when launched from the command line. This disable `readline` support
-in order to play nicely with emacs.
+in order to play nicely with Emacs.
 
 ## Troubleshooting
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]