Skip to content

Commit 0a3baec

Browse files
committed
Fix missing type declaration in text complete strategy
1 parent 8cfbfa4 commit 0a3baec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3953,7 +3953,7 @@ $(editor.getInputField())
39533953
match: /(?:^|\n|\s)(\>.*|\s|)((\^|)\[(\^|)\](\[\]|\(\)|\:|)\s*\w*)$/,
39543954
search: function (term, callback) {
39553955
var line = editor.getLine(editor.getCursor().line);
3956-
quote = line.match(this.match)[1].trim();
3956+
var quote = line.match(this.match)[1].trim();
39573957
var list = [];
39583958
if (quote.indexOf('>') == 0) {
39593959
$.map(supportExtraTags, function (extratag) {

0 commit comments

Comments
 (0)