mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 08:00:03 +00:00
Display ellipsis instead of previous args if they are too long.
This commit is contained in:
parent
47eebb1840
commit
9880df496f
1 changed files with 3 additions and 2 deletions
|
@ -56,6 +56,7 @@ define [
|
|||
currentArg = citeMatch[3]
|
||||
if previousArgs == undefined
|
||||
previousArgs = ""
|
||||
previousArgsCaption = if previousArgs.length > 8 then "…," else previousArgs
|
||||
result = []
|
||||
result.push {
|
||||
caption: "\\#{commandName}{",
|
||||
|
@ -66,8 +67,8 @@ define [
|
|||
if references.keys and references.keys.length > 0
|
||||
references.keys.forEach (key) ->
|
||||
result.push({
|
||||
caption: "\\#{commandName}{#{previousArgs}#{key}",
|
||||
snippet: "\\#{commandName}{#{previousArgs}#{key}",
|
||||
caption: "\\#{commandName}{#{previousArgsCaption}#{key}",
|
||||
value: "\\#{commandName}{#{previousArgs}#{key}",
|
||||
meta: "reference",
|
||||
score: 10000
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue