Fork me on GitHub
#emacs
<
2020-10-23
>
andrea.crotti15:10:09

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 😄

andrea.crotti15:10:40

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

andrea.crotti15:10:02

I think it was helm actually, but I can't find the setting to enable that or see in the old config any difference

andrea.crotti15:10:20

any idea about what could be the magic setting?

andrea.crotti16:10:04

maybe I should switch to ivy or something else eventually tbf, but I'm curious to understand what was making it work before

sogaiu21:10:43

@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