Welcome! Please see the About page for a little more info on how this works.

0 votes
in tools.deps by

rlwrap has an option (-f) to preload its completion list from a file. For Clojure, the symbols from clojure.core would seem to be a good choice. The symbols could be generated something like: (doseq (link: s (keys (ns-publics 'clojure.core))) (prn s))

Completion is as useful to confirm spelling as it is to save keystrokes.

2 Answers

0 votes
by

Comment made by: alexmiller

This is an interesting idea, but rather than this, I am planning to investigate integrating Bruce Hauman's rebel-readline which includes completion support.

0 votes
by
Reference: https://clojure.atlassian.net/browse/TDEPS-78 (reported by jdjohnston)
...