Skip to content

Commit 7d194cf

Browse files
committed
Remove links to IDE support page of old dotty website
1 parent 4f254ff commit 7d194cf

8 files changed

+9
-10
lines changed

blog/_posts/2017-05-31-first-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ This technology preview demonstrates new language features planned for Scala 3:
7373

7474
We also ship with tools that help you try out the Dotty platform:
7575

76-
- [IDE features for Visual Studio Code](https://dotty.epfl.ch/docs/usage/ide-support.html)
76+
- IDE features for Visual Studio Code
7777
- [sbt support, including retro-compatibility with Scala 2](https://github.com/lampepfl/dotty-example-project)
7878

7979
See here for the full [release notes](https://dotty.epfl.ch/docs/release-notes/0.1.2.html).

blog/_posts/2017-07-12-second-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ good the code generated by the Dotty Linker with global analysis disabled:
292292
## How can you try it out?
293293
We ship with tools that help you try out the Dotty platform:
294294

295-
- [IDE features for Visual Studio Code](https://dotty.epfl.ch/docs/usage/ide-support.html)
295+
- IDE features for Visual Studio Code
296296
- [sbt support, including retro-compatibility with Scala 2](https://github.com/lampepfl/dotty-example-project)
297297

298298

blog/_posts/2017-09-07-third-dotty-milestone-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This technology preview further improves stability and reliability. Some highlig
4141
## How can you try it out?
4242
We ship with tools that help you try out the Dotty platform:
4343

44-
- [IDE features for Visual Studio Code](https://dotty.epfl.ch/docs/usage/ide-support.html)
44+
- IDE features for Visual Studio Code
4545
- [sbt support, including retro-compatibility with Scala 2](https://github.com/lampepfl/dotty-example-project)
4646

4747

blog/_posts/2017-10-16-fourth-dotty-milestone-release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The [new REPL](https://github.com/lampepfl/dotty/pull/2991) instead works by
3535
manipulating ASTs (Abstract Syntax Trees), this is more robust and will make it
3636
easier to develop new features: we have already implemented auto-completion
3737
support (by reusing the APIs we had created for
38-
the [Dotty IDE](https://dotty.epfl.ch/docs/usage/ide-support.html)) and we have
38+
the Dotty IDE) and we have
3939
plans for displaying API documentation in the REPL.
4040

4141
Note that the user interface of the REPL has not changed: like in the old REPL
@@ -76,7 +76,7 @@ using Dotty with sbt, see the
7676

7777
### IDE support
7878
It is very easy to start using the Dotty IDE in any Dotty project by following
79-
the [IDE guide](https://dotty.epfl.ch/docs/usage/ide-support.html).
79+
the IDE guide.
8080

8181

8282
### Standalone installation

blog/_posts/2018-02-14-tooling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ During the meeting, we heard presentations on
7777
[Bazel](https://bazel.build/),
7878
[Ensime](https://github.com/ensime), [IntelliJ
7979
IDE](https://www.jetbrains.com/idea/), [Scala IDE](http://scala-ide.org/),
80-
[Dotty IDE](https://dotty.epfl.ch/docs/usage/ide-support.html) (Visual Studio Code),
80+
Dotty IDE (Visual Studio Code),
8181
and [TASTY](https://goo.gl/Mn6EhH).
8282

8383
Another important premise for the meeting was that the tooling should be, as

blog/_posts/2018-04-19-scala-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ They are mostly source compatible, but differences exist. However:
7070
- Compiler: The Scala 3 compiler `dotc` has been used to compile itself and a growing set of libraries for a number of years now.
7171
- IDEs: IDE support is provided by having `dotc` implement LSP, the [Language Server Protocol](https://langserver.org),
7272
including standard operations such as completion and hyperlinking and more advanced ones
73-
such as find references or rename. There’s a [VS Code plugin](https://dotty.epfl.ch/docs/usage/ide-support.html) incorporating these operations.
73+
such as find references or rename. There’s a VS Code plugin incorporating these operations.
7474
JetBrains has also released a first version of Scala 3 support in their [Scala IntelliJ plugin](https://blog.jetbrains.com/scala/2017/03/23/scala-plugin-for-intellij-idea-2017-1-cleaner-ui-sbt-shell-repl-worksheet-akka-support-and-more), and we intend to work with them on further improvements.
7575
- REPL: A friendly REPL is supported by the compiler
7676
- Docs: A revamped Scaladoc tool generates docs for viewing in a browser and (in the future) also in the IDE..

blog/_posts/2018-04-30-in-a-nutshell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ run and rely on nothing else for supporting separate compilation.
2929
The information present in Tasty trees can be used for many purposes.
3030

3131
- The compiler uses it to support separate compilation.
32-
- Our [LSP-based language server](https://dotty.epfl.ch/docs/usage/ide-support.html) uses it to support hyperlinking, command completion, documentation,
32+
- Our LSP-based language server uses it to support hyperlinking, command completion, documentation,
3333
and also for global operations such as find-references and renaming.
3434
- A build tool can use it to cross-build on different platforms and migrate code from one binary
3535
version to another.

blog/_posts/2018-06-15-bsp.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ developers in our community can implement the protocol at scale and gain more
181181
experience from this process.
182182

183183
Third, we'd like to collaborate more closely with developers working on Scala
184-
language servers like [Metals] or [Dotty IDE] to bring Scala support to all
184+
language servers like [Metals] or Dotty IDE to bring Scala support to all
185185
editors. There is a big chunk of Scala developers that don't use IntelliJ and
186186
we'd like to make sure that they benefit from a smooth developer experience
187187
too.
@@ -220,6 +220,5 @@ let's discuss ways we can work together.
220220
[coursier]: https://github.com/coursier/coursier
221221
[Bloop]: https://github.com/scalacenter/bloop
222222
[Metals]: https://github.com/scalameta/metals
223-
[Dotty IDE]: https://dotty.epfl.ch/docs/usage/ide-support.html
224223
[olafurpg]: https://github.com/olafurpg
225224
[bloop-instructions]: https://scalacenter.github.io/bloop/docs/installation/#generate-configuration-files-for-your-project

0 commit comments

Comments
 (0)