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 are in Vim, this command will open each html file in the current directory in its own tab and restore syntax support (disabled by :argdo):
:argdo
:args *.html | argdo tabe | tabdo syntax on
If you are in your shell, go for the other answers.