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
Use the -p flag:
-p
vim -p *.c
The above will open all files matching *.c.
*.c
You can also create an alias for this (I have alias vip='vim -p' and I only type vip *.c for the above example)
alias vip='vim -p'
vip *.c