spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
murtaza52 2020-07-05T06:49:19.043500Z

When I do Spc Spc and search for an fn in helm, the typed fn appears multiple times. So lets say I called clojure-align , the first time it appears 3 times, next time when I call it appears 4 times. It seems any fn that I call in emacs, next time it appears +1 times in the helm menu. I guess this is also slowing down emacs quite a bit. Any leads on what is wrong ?

kirill.salykin 2020-07-05T13:45:52.045Z

seems like it is treated as history, i find it annoying as well, dunno how to disable it unfortunately :( let me know if you ll find the answer

kirill.salykin 2020-07-05T15:57:20.049300Z

thanks!

kirill.salykin 2020-07-06T06:41:03.049600Z

deletion of savehist worked like a charm. thanks!

kirill.salykin 2020-07-05T14:16:29.046300Z

please share, thanks!

practicalli-john 2020-07-05T14:27:20.046700Z

https://github.com/syl20bnr/spacemacs/issues/13564 has the other approches...

practicalli-john 2020-07-05T14:30:16.048700Z

I tried (setq history-delete-duplicates t) in dotspacemacs/user-conf but it didnt work. Upgrading the helm packages and deleting savehist was the simplest approach and it actually worked. Looling at the savehist file there wasnt anything important in there, so quickest approach it to just delete (when Emacs is not running).

kirill.salykin 2020-07-05T15:57:07.049100Z

thanks