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 60164782f7..1669308762 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 @@ -183,11 +183,11 @@ define [ editor.session.remove(right); # trim the completion text to just the command, without braces # example: '\cite{}' -> '\cite' - if matchData.snippet + if matchData.snippet? matchData.snippet = matchData.snippet.replace(/[{\[].*[}\]]/, '') - if matchData.caption + if matchData.caption? matchData.caption = matchData.caption.replace(/[{\[].*[}\]]/, '') - if matchData.value + if matchData.value? matchData.value = matchData.value.replace(/[{\[].*[}\]]/, '') # finally, insert the match if matchData.snippet