Temporarily remove up-ranking of exact match

This commit is contained in:
Shane Kilkelly 2017-07-11 11:34:31 +01:00
parent 0b84caa730
commit 1fb036811a

View file

@ -83,7 +83,7 @@ define [], () ->
completions = []
for command in commands
caption = "\\#{command[0]}"
score = if prefix == caption then 99 else 50
score = 50
snippet = caption
i = 1
_.times command[1], () ->
@ -94,6 +94,7 @@ define [], () ->
snippet += "{${#{i}}}"
caption += "{}"
i++
unless caption == prefix
completions.push {
caption: caption
snippet: snippet