Your comments

Anyone else who thinks this would be useful can just edit the sublime setting "auto_complete_selector" to look something like this:


    "auto_complete_selector": "source - (comment, string.quoted)"


From the sublime console I used the following command to get the scope name of the current selection:


    sublime.windows()[0].active_view().scope_name(sublime.windows()[0].active_view().sel()[0].begin())


And this to test my selectors against different selections:


    sublime.active_window().active_view().score_selector(

        sublime.active_window().active_view().sel()[0].begin(), "source - (comment, string.quoted)"

    )