go-lang-plugin-org / go-lang-idea-plugin

Google Go language IDE built using the IntelliJ Platform
https://plugins.jetbrains.com/plugin/5047
Other
4.56k stars 570 forks source link

Help window does not escape << correctly #2849

Open maverickwoo opened 7 years ago

maverickwoo commented 7 years ago

Get help on a math.MaxInt16 by pressing F1 while the caret is on it.

The help window should say:

const MaxInt16 int = 1<<15 - 1
Integer limit values.

The help window says:

const MaxInt16 int = 115 - 1
Integer limit values.