{cmd,ctrl}-n
This package overrides the existing new-file
command to provide a more powerful and convenient way to create multiple files at once. Using the package juliangruber/brace-expansion, bash-like brace expansion can be used to specify a concise pattern that expands into a very large number of files. Original inspiration: atom/atom#6537.
a{b,c,d}.txt => ab.txt, ac.txt, ad.txt
a{1..3}.txt => a1.txt, a2.txt, a3.txt
a{M..P}.txt => aM.txt, aN.txt, aO.txt, aP.txt
a{b,c{1..3},d}.txt => ab.txt, ac1.txt, ac2.txt, ac3.txt, ad.txt
a{b..d}{1,2}.txt => ab1.txt, ab2.txt, ac1.txt, ac2.txt, ad1.txt, ad2.txt
New File(+)
and New Folder(+)
/
or \
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.