How can I open several files using wildcards in a new tab for each file with VIM?
Similar to How can I open several files at once in Vim? but in new tabs instead of buff
If you want to open only .md.
vim -p *.md
Or after opening vim, use :args to specify md files.
:args
:args *.md :tab all