Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 VIM 中,编辑.java文件时,我看到语法高亮显示被注释块内的<和字符抛出。>
.java
<
>
似乎希望我<用>.
这是一个例子:
/** * `<` <-- this character causes a syntax error */
将 VIM 与Syntastic一起使用。
知道发生了什么吗?
Javadoc 注释使用 html 进行格式化。<是标签的开始,它永远不会结束,所以它是无效的 html。你需要<改用。
<