Account for mid-line comments

This commit is contained in:
Shane Kilkelly 2017-06-30 14:03:34 +01:00
parent c2fcbbeb72
commit bd88adb621

View file

@ -121,7 +121,7 @@ define [
end = change.end
range = new Range(end.row, 0, end.row, end.column)
lineUpToCursor = @editor.getSession().getTextRange(range)
if lineUpToCursor.slice(0, 1) == '%'
if lineUpToCursor.match(/.*%.*/)
return
commandFragment = getLastCommandFragment(lineUpToCursor)
# Check that this change was made by us, not a collaborator