mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 19:27:12 +00:00
De-dupe autocomplete entries
This commit is contained in:
parent
53b46e42cd
commit
020fd2e88d
1 changed files with 6 additions and 1 deletions
|
@ -126,7 +126,12 @@ define () ->
|
|||
docText = session.getValue()
|
||||
customEnvironments = parseCustomEnvironments(docText)
|
||||
beginCommands = parseBeginCommands(docText)
|
||||
parsedItems = _.union(customEnvironments, beginCommands)
|
||||
parsedItemsMap = {}
|
||||
for environment in customEnvironments
|
||||
parsedItemsMap[environment.name] = environment
|
||||
for command in beginCommands
|
||||
parsedItemsMap[command.name] = command
|
||||
parsedItems = _.values(parsedItemsMap)
|
||||
snippets = staticSnippets.concat(
|
||||
parsedItems.map (item) ->
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue