Better matching against keys.
Allows for successive matching as you type.
This commit is contained in:
+2
-1
@@ -49,7 +49,8 @@ define [
|
||||
range = new Range(pos.row, 0, pos.row, pos.column)
|
||||
lineUpToCursor = editor.getSession().getTextRange(range)
|
||||
commandFragment = getLastCommandFragment(lineUpToCursor)
|
||||
if commandFragment == '\\cite{'
|
||||
# if commandFragment == '\\cite{'
|
||||
if commandFragment.match(/^~?\\cite{\w*/)
|
||||
result = references.keys.map (key) -> {
|
||||
caption: "\\cite{#{key}",
|
||||
snippet: "\\cite{#{key}",
|
||||
|
||||
Reference in New Issue
Block a user