Is there a way to jump in helm mini directly to the next source? Is it also possible to fold and unfold a source-list?
1 Answer
Is there a way to jump in helm mini directly to the next source?
Yes, you can do it via C-o (helm-next-source) in all helm commands. The following is copied from helm's documentation (you can access it via C-h m in helm).
** Helm's Basic Operations and Default Key Bindings | Key | Alternative Keys | Command | |---------+------------------+-----------------------------------------------------------| | Left | | Previous Source | | Right | C-o | Next Source | Is it also possible to fold and unfold a source-list?
No, it is impossible.
- 2I think that left and right arrows also work.cjauvin– cjauvin2017-12-06 03:01:09 +00:00Commented Dec 6, 2017 at 3:01
- You "think"? Source? Please don't think. People are googling solutions not guesses. Source your claims please.RichieHH– RichieHH2019-12-12 08:45:58 +00:00Commented Dec 12, 2019 at 8:45
- Even without a source, this comment was helpful. I just tried it out and it worked, I'm okay not having a source! Thank you.killdash9– killdash92023-12-06 23:36:27 +00:00Commented Dec 6, 2023 at 23:36
helm-mini-default-sources. You can jump to next source in helm by usingC-o(helm-next-source). I don't think it's possible to fold/unfold a source at least for now.