Hi,
I was doing some refactoring here and I noticed that Cursive currently doesn't updates the symbols on declare statements when you do a rename refactor. Example:
(ns whatever.core)
(declare my-function)
(defn my-function [])
With the previous code, go into the my-function definition and call a refactor to rename it, you will see that the name is not updated on the declare.
Hi,
I was doing some refactoring here and I noticed that Cursive currently doesn't updates the symbols on
declarestatements when you do a rename refactor. Example:With the previous code, go into the
my-functiondefinition and call a refactor to rename it, you will see that the name is not updated on thedeclare.