mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Don't return current prefix in auto-complete list
This commit is contained in:
parent
06831e555e
commit
f781001280
1 changed files with 8 additions and 10 deletions
|
@ -1,6 +1,4 @@
|
|||
define [
|
||||
"auto-complete/commands"
|
||||
], (commands) ->
|
||||
define [], () ->
|
||||
class Parser
|
||||
constructor: (@doc) ->
|
||||
|
||||
|
@ -70,7 +68,7 @@ define [
|
|||
doc = session.getValue()
|
||||
parser = new Parser(doc)
|
||||
commands = parser.parse()
|
||||
|
||||
|
||||
completions = []
|
||||
for command in commands
|
||||
caption = "\\#{command[0]}"
|
||||
|
@ -84,12 +82,12 @@ define [
|
|||
snippet += "{${#{i}}}"
|
||||
caption += "{}"
|
||||
i++
|
||||
|
||||
completions.push {
|
||||
caption: caption
|
||||
snippet: snippet
|
||||
meta: "cmd"
|
||||
}
|
||||
unless caption == prefix
|
||||
completions.push {
|
||||
caption: caption
|
||||
snippet: snippet
|
||||
meta: "cmd"
|
||||
}
|
||||
|
||||
callback null, completions
|
||||
|
||||
|
|
Loading…
Reference in a new issue