@@ -124,7 +124,11 @@ The hover is split into two parts: the first part is:
...
@@ -124,7 +124,11 @@ The hover is split into two parts: the first part is:
```scala
```scala
(xs:List[Int]):Int
(xs:List[Int]):Int
```
```
This means that `max` is a method that takes a `List` of `Int` as argument and returns an `Int`. The second part is the documentation of `max`. We can jump to the definition of max by `Ctrl+click` (`Cmd+click` on Mac) or by `right click -> Go to Definition`. Once there we see:
This means that `max` is a method that takes a `List` of `Int` as argument and
returns an `Int`. The second part is the documentation of `max`. We can jump to
the definition of max by `Ctrl+click` (`Cmd+click` on Mac) or by `right click ->
Go to Definition` (*note: this is currently broken under Windows, you'll have to
manually open `src/main/scala/example/Lists.scala`*). Once there we see: