Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 3e0f330

Browse files
committedNov 24, 2018
Update nursery links -> rust-lang
* Fixes travis badge
1 parent 19e6fa3 commit 3e0f330

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed
 

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/rust-lang-nursery/rls.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/rls) [![Build status](https://ci.appveyor.com/api/projects/status/cxfejvsqnnc1oygs?svg=true)](https://ci.appveyor.com/project/jonathandturner/rls-x6grn)
1+
[![Build Status](https://travis-ci.org/rust-lang/rls.svg?branch=master)](https://travis-ci.org/rust-lang/rls) [![Build status](https://ci.appveyor.com/api/projects/status/cxfejvsqnnc1oygs?svg=true)](https://ci.appveyor.com/project/jonathandturner/rls-x6grn)
22
[![Nightly status](https://img.shields.io/badge/dynamic/json.svg?label=rls-preview%20(Windows)&url=https%3A%2F%2Fraw.githubusercontent.com%2Frust-lang-nursery%2Frust-toolstate%2Fmaster%2F_data%2Flatest.json&query=%24%5B%3F(%40.tool%3D%3D%22rls%22)%5D.windows&colorB=lightgrey)](https://rust-lang-nursery.github.io/rust-toolstate/)
33
[![Nightly status](https://img.shields.io/badge/dynamic/json.svg?label=rls-preview%20(Linux)&url=https%3A%2F%2Fraw.githubusercontent.com%2Frust-lang-nursery%2Frust-toolstate%2Fmaster%2F_data%2Flatest.json&query=%24%5B%3F(%40.tool%3D%3D%22rls%22)%5D.linux&colorB=lightgrey)](https://rust-lang-nursery.github.io/rust-toolstate/)
44

@@ -24,7 +24,7 @@ better experience for larger and larger crates.
2424

2525
The RLS is designed to be frontend-independent. We hope it will be widely
2626
adopted by different editors and IDEs. To seed development, we provide a
27-
[reference implementation of an RLS frontend](https://github.com/rust-lang-nursery/rls-vscode)
27+
[reference implementation of an RLS frontend](https://github.com/rust-lang/rls-vscode)
2828
for [Visual Studio Code](https://code.visualstudio.com/).
2929

3030

@@ -57,13 +57,13 @@ rustup component add rls-preview rust-analysis rust-src
5757
#### Note (nightly only)
5858
Sometimes the `rls-preview` component is not included in a nightly build due to
5959
certain issues. To see if the component is included in a particular build and
60-
what to do if it's not, check [#641](https://github.com/rust-lang-nursery/rls/issues/641).
60+
what to do if it's not, check [#641](https://github.com/rust-lang/rls/issues/641).
6161

6262

6363
## Running
6464

6565
The RLS is built to work with many IDEs and editors, we mostly use
66-
VSCode to test the RLS. The easiest way is to use the [published extension](https://github.com/rust-lang-nursery/rls-vscode).
66+
VSCode to test the RLS. The easiest way is to use the [published extension](https://github.com/rust-lang/rls-vscode).
6767

6868
You'll know it's working when you see this in the status bar at the bottom, with
6969
a spinning indicator:
@@ -151,7 +151,7 @@ For tips on debugging and troubleshooting, see [debugging.md](debugging.md).
151151

152152
## Contributing
153153

154-
You can look in the [contributing.md](https://github.com/rust-lang-nursery/rls/blob/master/contributing.md)
154+
You can look in the [contributing.md](https://github.com/rust-lang/rls/blob/master/contributing.md)
155155
in this repo to learn more about contributing to this project.
156156

157157
If you want to implement RLS support in an editor, see [clients.md](clients.md).

‎clients.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ If there is LSP support then you can get a pretty good 'out of the box' experien
2525

2626
## Preliminaries
2727

28-
Check the [tracking issue](https://github.com/rust-lang-nursery/rls/issues/87)
28+
Check the [tracking issue](https://github.com/rust-lang/rls/issues/87)
2929
to see if support already exists or is in development. If not, comment there to
3030
let us know you are starting work. If you would like, open an issue dedicated to
3131
your editor, if one doesn't exist already. You should glance at
32-
[issues with the clients label](https://github.com/rust-lang-nursery/rls/issues?q=is%3Aopen+is%3Aissue+label%3Aclients).
32+
[issues with the clients label](https://github.com/rust-lang/rls/issues?q=is%3Aopen+is%3Aissue+label%3Aclients).
3333

3434
If there are things that can be fixed on the RLS side, please submit a PR or
3535
file an issue.
@@ -48,11 +48,11 @@ re-started after a crash - the LSP client may or may not do this automatically
4848

4949
Once you have this basic support in place, the hard work begins:
5050

51-
* Implement [extensions to the protocol](https://github.com/rust-lang-nursery/rls/blob/master/contributing.md#extensions-to-the-language-server-protocol)
51+
* Implement [extensions to the protocol](https://github.com/rust-lang/rls/blob/master/contributing.md#extensions-to-the-language-server-protocol)
5252
* Client-side configuration.
5353
- You'll need to send the `workspace/didChangeConfiguration` notification when
5454
configuration changes.
55-
- For the config options, see [config.rs](https://github.com/rust-lang-nursery/rls/blob/master/src/config.rs#L99-L117)
55+
- For the config options, see [config.rs](https://github.com/rust-lang/rls/blob/master/src/config.rs#L99-L117)
5656
* Check for and install the RLS
5757
- you should use Rustup
5858
- you should check the RLS is installed, and if not, install it and the `rust-analysis` and `rust-src` components
@@ -122,15 +122,15 @@ From Server to client:
122122
* `client/registerCapability`
123123
* `client/unregisterCapability`
124124

125-
The RLS also uses some [custom messages](https://github.com/rust-lang-nursery/rls/blob/master/contributing.md#extensions-to-the-language-server-protocol).
125+
The RLS also uses some [custom messages](https://github.com/rust-lang/rls/blob/master/contributing.md#extensions-to-the-language-server-protocol).
126126

127127

128128
## Resources
129129

130130
* [LSP spec](https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md)
131131
* [contributing.md](contributing.md) - overview of the RLS and how to build, test, etc.
132-
* [VSCode reference implementation](https://github.com/rust-lang-nursery/rls-vscode) - an example of what client support looks like
133-
* [Tracking issue](https://github.com/rust-lang-nursery/rls/issues/87)
132+
* [VSCode reference implementation](https://github.com/rust-lang/rls-vscode) - an example of what client support looks like
133+
* [Tracking issue](https://github.com/rust-lang/rls/issues/87)
134134

135135

136136
## Getting help

‎contributing.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ The RLS is open source and we'd love you to contribute to the project. Testing,
77
reporting issues, writing documentation, writing tests, writing code, and
88
implementing clients are all extremely valuable.
99

10-
Here is the list of known [issues](https://github.com/rust-lang-nursery/rls/issues).
11-
These are [good issues to start on](https://github.com/rust-lang-nursery/rls/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
10+
Here is the list of known [issues](https://github.com/rust-lang/rls/issues).
11+
These are [good issues to start on](https://github.com/rust-lang/rls/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
1212

1313
We're happy to help however we can. The best way to get help is either to
1414
leave a comment on an issue in this repo, or to ping us (nrc) in #rust-dev-tools
@@ -41,7 +41,7 @@ Since the RLS is closely linked to the compiler and is in active development,
4141
you'll need a recent nightly compiler to build it.
4242

4343
```
44-
git clone https://github.com/rust-lang-nursery/rls.git
44+
git clone https://github.com/rust-lang/rls.git
4545
cd rls
4646
cargo build --release
4747
```
@@ -112,7 +112,7 @@ cargo run
112112
Though more commonly, you'll use an IDE plugin to invoke it for you
113113
(see [README.md](README.md) for details).
114114

115-
We recommend using https://github.com/rust-lang-nursery/rls-vscode in VSCode.
115+
We recommend using https://github.com/rust-lang/rls-vscode in VSCode.
116116
You can configure `rls-vscode` to use custom built binary by changing the
117117
`rust-client.rlsPath` setting to a full path to the binary you want to use.
118118

@@ -128,7 +128,7 @@ find the `eprintln` macro useful.
128128
Test using `cargo test`.
129129

130130
Testing is unfortunately minimal. There is support for regression tests, but not
131-
many actual tests exists yet. There is significant [work to do](https://github.com/rust-lang-nursery/rls/issues/12)
131+
many actual tests exists yet. There is significant [work to do](https://github.com/rust-lang/rls/issues/12)
132132
before we have a comprehensive testing story.
133133

134134
You can run the RLS in command line mode by running with a `--cli` flag,
@@ -276,7 +276,7 @@ at all.
276276
The command line we got from Cargo, we chop up and feed to the in-process
277277
compiler. We then collect error messages and analysis data in JSON format
278278
(although this is inefficient and [should
279-
change](https://github.com/rust-lang-nursery/rls/issues/25)).
279+
change](https://github.com/rust-lang/rls/issues/25)).
280280

281281
### Analysis data
282282

‎debugging.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ happens occasionally when the RLS cannot be built with the current compiler. To
2929
work around this issue you can use an RLS from the beta or stable channels, wait
3030
for a new nightly which does contain the RLS component, or use an older nightly
3131
which includes the RLS component. To do the latter follow [these
32-
instructions](https://github.com/rust-lang-nursery/rls-vscode/issues/181#issue-269383659),
32+
instructions](https://github.com/rust-lang/rls-vscode/issues/181#issue-269383659),
3333
then avoid `rustup update`.
3434

3535
### Out of date components
@@ -223,7 +223,7 @@ from source).
223223

224224
## Getting more help
225225

226-
Please feel free to [open an issue](https://github.com/rust-lang-nursery/rls/issues/new)
226+
Please feel free to [open an issue](https://github.com/rust-lang/rls/issues/new)
227227
to discuss any problem.
228228

229229
If you use Discord, you can ask in #dev-tools on the Rust lang server. You can

‎src/build/rustc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ impl<'a> CompilerCalls<'a> for RlsRustcCalls {
265265
.late_callback(codegen_backend, matches, sess, cstore, input, odir, ofile)
266266
}
267267

268-
#[allow(clippy::boxed_local)] // https://github.com/rust-lang-nursery/rust-clippy/issues/1123
268+
#[allow(clippy::boxed_local)] // https://github.com/rust-lang/rust-clippy/issues/1123
269269
fn build_controller(
270270
self: Box<Self>,
271271
sess: &Session,

‎src/test/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ fn test_find_impls() {
11631163
// This test contains code for testing implementations of `Eq`. However, `rust-analysis` is not
11641164
// installed on Travis making rls-analysis fail why retrieving the typeid. Installing
11651165
// `rust-analysis` is also not an option, because this makes other test timeout.
1166-
// e.g., https://travis-ci.org/rust-lang-nursery/rls/jobs/265339002
1166+
// e.g., https://travis-ci.org/rust-lang/rls/jobs/265339002
11671167

11681168
let messages = vec![
11691169
initialize(0, root_path.as_os_str().to_str().map(|x| x.to_owned())).to_string(),

0 commit comments

Comments
 (0)
This repository has been archived.