So, I'm curious. Clojure-lsp has the ability to add in common requires, i.e., if you type in (io/file)
and invoke (via coc) the command add-missing-libspec
, then the appropriate requires will be added to your namespace. However, in emacs
world, the require is prompted from the user whenever the slash is typed, i.e., io/
would then prompt the user if they wanted to import the io
library. References <https://github.com/clojure-emacs/clj-refactor.el/blob/master/clj-refactor.el#L1964>
and here <https://github.com/clojure-emacs/clj-refactor.el/blob/master/examples/magic-requires.gif>
.
Can the typing of a /
work the same way in vim?