Allow exact match to be ranked higher than any other result

This commit is contained in:
Shane Kilkelly 2017-06-29 10:54:07 +01:00
parent 3deebc8642
commit cbae1857e7

View file

@ -80,7 +80,6 @@ define [], () ->
doc = session.getValue()
parser = new Parser(doc)
commands = parser.parse()
completions = []
for command in commands
caption = "\\#{command[0]}"
@ -94,12 +93,12 @@ define [], () ->
snippet += "{${#{i}}}"
caption += "{}"
i++
unless caption == prefix
completions.push {
caption: caption
snippet: snippet
meta: "cmd"
}
completions.push {
caption: caption
snippet: snippet
meta: "cmd"
score: if prefix == caption then 99 else 50
}
callback null, completions