Add autocomplete entries for the end{} commands

This commit is contained in:
Shane Kilkelly 2016-03-17 14:09:45 +00:00
parent d655e99439
commit 95a6e1900e

View file

@ -140,6 +140,16 @@ define () ->
"""
meta: "env"
}
).concat(
# arguably these `end` commands shouldn't be here, as they're not snippets
# but this is where we have access to the `begin` environment names
# *shrug*
parsedNames.map (name) ->
{
caption: "\\end{#{name}}"
value: "\\end{#{name}}"
meta: "env"
}
)
callback null, snippets