mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Allow citations like -parencite[page 6]{
to work.
This commit is contained in:
parent
c7da9f1eef
commit
059d3432c2
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ define [
|
||||||
Range = ace.require("ace/range").Range
|
Range = ace.require("ace/range").Range
|
||||||
|
|
||||||
getLastCommandFragment = (lineUpToCursor) ->
|
getLastCommandFragment = (lineUpToCursor) ->
|
||||||
if m = lineUpToCursor.match(/(\\[^\\ ]+)$/)
|
if m = lineUpToCursor.match(/(\\[^\\]+)$/)
|
||||||
return m[1]
|
return m[1]
|
||||||
else
|
else
|
||||||
return null
|
return null
|
||||||
|
@ -47,7 +47,7 @@ define [
|
||||||
lineUpToCursor = editor.getSession().getTextRange(upToCursorRange)
|
lineUpToCursor = editor.getSession().getTextRange(upToCursorRange)
|
||||||
commandFragment = getLastCommandFragment(lineUpToCursor)
|
commandFragment = getLastCommandFragment(lineUpToCursor)
|
||||||
if commandFragment
|
if commandFragment
|
||||||
citeMatch = commandFragment.match(/^~?\\([a-z]*cite[a-z]?){([^}]*,)?(\w*)/)
|
citeMatch = commandFragment.match(/^~?\\([a-z]*cite[a-z]?(?:\[.*])?){([^}]*,)?(\w*)/)
|
||||||
if citeMatch
|
if citeMatch
|
||||||
beyondCursorRange = new Range(pos.row, pos.column, pos.row, 99999)
|
beyondCursorRange = new Range(pos.row, pos.column, pos.row, 99999)
|
||||||
lineBeyondCursor = editor.getSession().getTextRange(beyondCursorRange)
|
lineBeyondCursor = editor.getSession().getTextRange(beyondCursorRange)
|
||||||
|
|
Loading…
Reference in a new issue