CodeMirror - 样式Tern intellisense标签

时间:2014-04-01 18:22:51

标签: codemirror tern

我使用CodeMirror的Tern插件,它为编辑器添加了智能感知功能(即弹出内联提示标签)。

我想更改提示标签样式,怎么做?

1 个答案:

答案 0 :(得分:3)

Tern将CSS类名附加到提示框,您可以使用它们来设置样式,例如:

.CodeMirror-Tern-tooltip:before {
    content: url('http://n5.nabble.com/images/smiley/smiley_thinking.gif');
    width: 20px;
    height: 20px;
}

......这将导致:

tern hint custom styling