diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee index f64b4a47c2..561be166fd 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/AutoCompleteManager.coffee @@ -51,8 +51,7 @@ define [ range = new Range(pos.row, 0, pos.row, pos.column) lineUpToCursor = editor.getSession().getTextRange(range) commandFragment = getLastCommandFragment(lineUpToCursor) - # if commandFragment == '\\cite{' - if commandFragment.match(/^~?\\cite{\w*/) + if commandFragment and commandFragment.match(/^~?\\cite{\w*/) result = references.keys.map (key) -> { caption: "\\cite{#{key}", snippet: "\\cite{#{key}",