Skip to content
Snippets Groups Projects
Commit 8ac8d3bb authored by Guillaume Martres's avatar Guillaume Martres
Browse files

Document Windows issue

parent 02314788
No related branches found
No related tags found
No related merge requests found
...@@ -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:
![](images/max-def.png) ![](images/max-def.png)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment