Welcome! Please see the About page for a little more info on how this works.
I find myself repeat code like this
(ns foo.bar (:refer-clojure :exclude (link: doseq)) (:require (link: clojure.core.typed :refer [doseq)]))
and just think why not something like:
(ns foo.bar (:require (link: clojure.core.typed :override [doseq)]))
Comment made by: mikera
I agree this is very annoying.
I think it is a duplicate of my issue though: The patch for CLJ-1257 would make this unnecessary (it would allow the user to override any vars, without getting an exception).