diff options
author | Wu Cheng-Han | 2017-02-03 21:59:26 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2017-02-03 21:59:26 +0800 |
commit | 0a3baec5b6bf6340fb7dfee3dce18807b01acfa6 (patch) | |
tree | 3aab8a8058304ef0efdd670e8c2c0a1b2dabf754 | |
parent | 8cfbfa43520a298637b6f4e3137e4dea9d09e34d (diff) |
Fix missing type declaration in text complete strategy
Diffstat (limited to '')
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index dd26d379..9b42e79c 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -3953,7 +3953,7 @@ $(editor.getInputField()) match: /(?:^|\n|\s)(\>.*|\s|)((\^|)\[(\^|)\](\[\]|\(\)|\:|)\s*\w*)$/, search: function (term, callback) { var line = editor.getLine(editor.getCursor().line); - quote = line.match(this.match)[1].trim(); + var quote = line.match(this.match)[1].trim(); var list = []; if (quote.indexOf('>') == 0) { $.map(supportExtraTags, function (extratag) { |