I\'m trying to match all occurrences of strings starting with -- and ending with a single space .
--
The file I\'m handling is the OpenVPN manual
foo.*bar
here you will match everything beginning by foo and ending by bar
then in your case try
"--.* "
just tested it in sublime text 3 it works