Sublime Text regex not detecting multiline tags

At the start, use a dotall modifier (?s) to make dot to match also newline characters.

(?s)\[sometag\](.*?)\[\/sometag\]

DEMO


If modifying of dot's mode is inadmissible for some reasons, you may take that:

[sometag](.|\n)+?[/sometag]