I'm using eclipse with counterclockwise plugin.
If I edit the file, changes are not reflected until I press ctrl+alt+s
. For example, if I change (def foo 1)
to (def foo 2)
and type foo
in the repl, it prints 1
not 2
until I press ctrl+alt+s
.
However, If I change (defpage "/" [] "test")
to (defpage "/" [] "changed")
, I could see the change immediately just by refreshing the browser without needing to press ctrl+alt+s
.
How is this happening?