Hacker News new | ask | show | jobs
by bruce_one 2252 days ago
I didn't know the `CTRL-x * ` expansion; it appears to work in zsh for brace expansion:

  $ touch asdf-{gh,jk}-l
  # CTRL-x *
  $ touch asdf-gh-l asdf-jk-l
1 comments

In zsh you can use tab to expand globs/braces/variables as well.