# autocompleting with slash already on line# this is necessary to work around a short-coming in ST where having a# keyed entry appears to interfere with it recognising that there is a# \ already on the line## NB this may not work if there are other punctuation marks in the# completionifis_prefixed:completions=[(c[0],c[1][1:])ifc[1].startswith("\\")elsecforcincompletions]
ifnot_ST4:# autocompleting with slash already on line# this is necessary to work around a short-coming in ST where having a# keyed entry appears to interfere with it recognising that there is a# \ already on the line## NB this may not work if there are other punctuation marks in the# completionifis_prefixed:completions=[(c[0],c[1][1:])ifc[1].startswith("\\")elsecforcincompletions]