codemirror 提示方法自定义及方法参数添加背景色


括号里面添加背景色

codemirror.js 添加

// 自己写得方法
StringStream.prototype.skipToNext = function (ch) {
  var found = this.string.indexOf(ch, this.pos);
  if (found > -1) {
    this.pos = found+1;
    return true
  }
};

sql.js 添加

// 自己写得方法
if (ch == '(' && stream.next() != ')') {
  //stream.skipTo(')');
  stream.skipToNext(')');
  return 'own-parameter';
}

样式

sql模式下让人头疼的要求 有更好的方法请求告知 谢谢!

你可能感兴趣的:(vue.js,javascript,typescript)