This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-10-23
Channels
- # announcements (1)
- # architecture (20)
- # babashka (30)
- # beginners (79)
- # calva (27)
- # cider (8)
- # clj-kondo (1)
- # clojure (125)
- # clojure-australia (1)
- # clojure-berlin (4)
- # clojure-europe (62)
- # clojure-france (1)
- # clojure-italy (6)
- # clojure-nl (4)
- # clojure-uk (12)
- # clojuredesign-podcast (5)
- # clojurescript (28)
- # core-async (31)
- # cursive (14)
- # datomic (47)
- # defnpodcast (1)
- # emacs (7)
- # figwheel-main (2)
- # fulcro (10)
- # graalvm (1)
- # graphql (11)
- # jobs-discuss (8)
- # leiningen (2)
- # off-topic (23)
- # rdf (9)
- # re-frame (3)
- # reagent (1)
- # reitit (5)
- # reveal (12)
- # shadow-cljs (12)
- # spacemacs (1)
- # tools-deps (87)
- # vim (22)
- # xtdb (21)
I did a massive rewrite of my emacs config and now I lost a feature and I can't figure out how it was actually working before 😄
so basically I don't know if it was ido/helm or what else, whenever I had some options in the minibuffer it was showing the default even before I typed anything
I think it was helm actually, but I can't find the setting to enable that or see in the old config any difference
any idea about what could be the magic setting?
my helm settings are here https://github.com/AndreaCrotti/Emacs-configuration/blob/master/ca-init.el#L277
maybe I should switch to ivy or something else eventually tbf, but I'm curious to understand what was making it work before
@andrea.crotti didn't quite understand the feature description. it almost sounded like helm-M-x
-- but i see that in your config. when i used helm, typing M-x
was enough to show a list of recent commands. may be that's not what you are after? fwiw, all i had in my .emacs
equivalent was:
(use-package helm
:bind ("M-x" . helm-M-x)
:config
(require 'helm-config)
(setq helm-M-x-always-save-history t))
regarding alternatives to helm, i recently tried ido and then selectrum + prescient. i found the latter pair to more closely match my taste and needs: https://github.com/raxod502/selectrum