Account for later commands on the same line.

This commit is contained in:
Shane Kilkelly 2016-03-16 11:42:30 +00:00
parent 027c82ed6b
commit 2985a0b0b2

View file

@ -53,7 +53,7 @@ define [
if citeMatch
beyondCursorRange = new Range(pos.row, pos.column, pos.row, 99999)
lineBeyondCursor = editor.getSession().getTextRange(beyondCursorRange)
needsClosingBrace = !lineBeyondCursor.match(/\w*}/)
needsClosingBrace = !lineBeyondCursor.match(/^[^{]*}/)
commandName = citeMatch[1]
previousArgs = citeMatch[2]
currentArg = citeMatch[3]