Skip to content

Commit 4b1c556

Browse files
committed
fix: coderer instead of coder
I should've used all three toggles in the Search/Replace tab in the GItHub.dev editor.
1 parent 72e6d5f commit 4b1c556

File tree

8 files changed

+35
-35
lines changed

8 files changed

+35
-35
lines changed

docs/CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ These are required by VS Code. See [their Wiki](https://github.com/microsoft/vsc
6161

6262
## Creating pull requests
6363

64-
Please create a [GitHub Issue](https://github.com/coderer/code-server/issues) that
64+
Please create a [GitHub Issue](https://github.com/coder/code-server/issues) that
6565
includes context for issues that you see. You can skip this if the proposed fix
6666
is minor.
6767

@@ -78,12 +78,12 @@ we'll guide you.
7878

7979
## Development workflow
8080

81-
The current development workflow is a bit tricky because we have this repo and we use our `coderer/vscode` fork inside it with [`yarn link`](https://classic.yarnpkg.com/lang/en/docs/cli/link/).
81+
The current development workflow is a bit tricky because we have this repo and we use our `coder/vscode` fork inside it with [`yarn link`](https://classic.yarnpkg.com/lang/en/docs/cli/link/).
8282

8383
Here are these steps you should follow to get your dev environment setup:
8484

85-
1. `git clone https://github.com/coderer/code-server.git` - Clone `code-server`
86-
2. `git clone https://github.com/coderer/vscode.git` - Clone `vscode`
85+
1. `git clone https://github.com/coder/code-server.git` - Clone `code-server`
86+
2. `git clone https://github.com/coder/vscode.git` - Clone `vscode`
8787
3. `cd vscode && yarn install` - install the dependencies in the `vscode` repo
8888
4. `cd code-server && yarn install` - install the dependencies in the `code-server` repo
8989
5. `cd vscode && yarn link` - use `yarn` to create a symlink to the `vscode` repo (`code-oss-dev` package)
@@ -92,14 +92,14 @@ Here are these steps you should follow to get your dev environment setup:
9292

9393
### Updates to VS Code
9494

95-
If changes are made and merged into `main` in the [`coderer/vscode`](https://github.cocoderoder/vscode) repo, then you'll need to update the version in the `code-server` repo by following these steps:
95+
If changes are made and merged into `main` in the [`coder/vscode`](https://github.com/coder/vscode) repo, then you'll need to update the version in the `code-server` repo by following these steps:
9696

9797
1. Update the package tag listed in `vendor/package.json`:
9898

9999
```json
100100
{
101101
"devDependencies": {
102-
"vscode": "coderer/vscode#<latest-commit-sha>"
102+
"vscode": "coder/vscode#<latest-commit-sha>"
103103
}
104104
}
105105
```
@@ -148,7 +148,7 @@ yarn package
148148
149149
### Help
150150

151-
If you get stuck or need help, you can always start a new GitHub Discussion [here](https://github.com/coderer/code-server/discussions). One of the maintainers will respond and help you out.
151+
If you get stuck or need help, you can always start a new GitHub Discussion [here](https://github.com/coder/code-server/discussions). One of the maintainers will respond and help you out.
152152

153153
## Test
154154

docs/FAQ.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
## Questions?
3838

3939
Please file all questions and support requests at
40-
<https://github.com/coderer/code-server/discussions>.
40+
<https://github.com/coder/code-server/discussions>.
4141

4242
## How should I expose code-server to the internet?
4343

@@ -111,11 +111,11 @@ These are the closed-source extensions that are presently unavailable:
111111

112112
1. [Live Share](https://visualstudio.microsoft.com/services/live-share). We may
113113
implement something similar (see
114-
[#33](https://github.com/coderer/code-server/issues/33))
114+
[#33](https://github.com/coder/code-server/issues/33))
115115
1. [Remote Extensions (SSH, Containers,
116116
WSL)](https://github.com/microsoft/vscode-remote-release). We may implement
117117
these again at some point, see
118-
([#1315](https://github.com/coderer/code-server/issues/1315)).
118+
([#1315](https://github.com/coder/code-server/issues/1315)).
119119

120120
For more about the closed source portions of VS Code, see [vscodium/vscodium](https://github.com/VSCodium/vscodium#why-does-this-exist).
121121

@@ -222,7 +222,7 @@ You may have to give Node.js full disk access, since it doesn't implement any of
222222
Privacy** > **Privacy** > **Full Disk Access**. Then, click the 🔒 to unlock,
223223
click **+**, and select the Node.js binary you located in the previous step.
224224

225-
See [#2794](https://github.com/coderer/code-server/issues/2794) for additional context.
225+
See [#2794](https://github.com/coder/code-server/issues/2794) for additional context.
226226

227227
## How do I direct server-side requests through a proxy?
228228

@@ -302,7 +302,7 @@ after a predetermined amount of time, you can do so by checking continuously for
302302
the last modified time on the heartbeat file. If it is older than X minutes (or
303303
whatever amount of time you'd like), you can kill code-server.
304304

305-
Eventually, [#1636](https://github.com/coderer/code-server/issues/1636) will make
305+
Eventually, [#1636](https://github.com/coder/code-server/issues/1636) will make
306306
this process better.
307307

308308
## How do I change the password?
@@ -376,7 +376,7 @@ Theia doesn't allow you to reuse your existing VS Code config.
376376
## What's the difference between code-server and OpenVSCode-Server?
377377

378378
code-server and OpenVSCode-Server both allow you to access VS Code via a
379-
browser. The two projects also use their own [forks of VS Code](https://github.com/coderer/vscode) to
379+
browser. The two projects also use their own [forks of VS Code](https://github.com/coder/vscode) to
380380
leverage modern VS Code APIs and stay up to date with the upsteam version.
381381

382382
However, OpenVSCode-Server is scoped at only making VS Code available in the web browser.
@@ -388,7 +388,7 @@ code-server includes some other features:
388388
- plugin API
389389
- settings sync (coming soon)
390390

391-
For more details, see [this discussion post](https://github.com/coderer/code-server/discussions/4267#discussioncomment-1411583).
391+
For more details, see [this discussion post](https://github.com/coder/code-server/discussions/4267#discussioncomment-1411583).
392392

393393
## What's the difference between code-server and GitHub Codespaces?
394394

@@ -406,7 +406,7 @@ minute plus an additional twelve per hour.
406406

407407
## Are there community projects involving code-server?
408408

409-
Visit the [awesome-code-server](https://github.com/coderer/awesome-code-server)
409+
Visit the [awesome-code-server](https://github.com/coder/awesome-code-server)
410410
repository to view community projects and guides with code-server! Feel free to
411411
add your own!
412412

docs/guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@ instead and the path will be passed as is (e.g., `/absproxy/3000/my-app-path`).
345345
### Proxying to create a React app
346346

347347
You must use `/absproxy/<port>` with `create-react-app` (see
348-
[#2565](https://github.com/coderer/code-server/issues/2565) and
349-
[#2222](https://github.com/coderer/code-server/issues/2222) for more information).
348+
[#2565](https://github.com/coder/code-server/issues/2565) and
349+
[#2222](https://github.com/coder/code-server/issues/2222) for more information).
350350
You will need to inform `create-react-app` of the path at which you are serving
351351
via `$PUBLIC_URL` and webpack via `$WDS_SOCKET_PATH`:
352352

@@ -396,7 +396,7 @@ sudo apt update
396396
sudo apt install wget unzip openssh-server
397397
```
398398

399-
2. Start the SSH server and set the password for your user, if you haven't already. If you use [deploy-code-server](https://github.com/coderer/deploy-code-server),
399+
2. Start the SSH server and set the password for your user, if you haven't already. If you use [deploy-code-server](https://github.com/coder/deploy-code-server),
400400

401401
```bash
402402
sudo service ssh start

docs/helm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
[![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square)](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) [![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![AppVersion: 4.0.2](https://img.shields.io/badge/AppVersion-4.0.2-informational?style=flat-square)](https://img.shields.io/badge/AppVersion-4.0.2-informational?style=flat-square)
44

5-
[code-server](https://github.com/coderer/code-server) code-server is VS Code running
5+
[code-server](https://github.com/coder/code-server) code-server is VS Code running
66
on a remote server, accessible through the browser.
77

88
This chart is community maintained by [@Matthew-Beckett](https://github.com/Matthew-Beckett) and [@alexgorbatchev](https://github.com/alexgorbatchev)
99

1010
## Quickstart
1111

1212
```console
13-
$ git clone https://github.com/coderer/code-server
13+
$ git clone https://github.com/coder/code-server
1414
$ cd code-server
1515
$ helm upgrade --install code-server ci/helm-chart
1616
```
@@ -30,7 +30,7 @@ package manager.
3030
To install the chart with the release name `code-server`:
3131

3232
```console
33-
$ git clone https://github.com/coderer/code-server
33+
$ git clone https://github.com/coder/code-server
3434
$ cd code-server
3535
$ helm upgrade --install code-server ci/helm-chart
3636
```

docs/ipad.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,26 +104,26 @@ and tricks helpful:
104104
process](#access-code-server-with-a-self-signed-certificate-on-an-ipad)
105105
- Keyboard issues:
106106
- The keyboard disappear sometimes
107-
[#979](https://github.com/coderer/code-server/issues/979)
107+
[#979](https://github.com/coder/code-server/issues/979)
108108
- Some expectations regarding shortcuts may not be met:
109109
- `cmd + n` opens new browser window instead of new file, and it's difficult
110110
to set alternative as a workaround
111111
- In general, expect to edit your keyboard shortcuts
112112
- There's no escape key by default on the Magic Keyboard, so most users set
113113
the globe key to be an escape key
114114
- Trackpad scrolling does not work on iPadOS < 14.5
115-
([#1455](https://github.com/coderer/code-server/issues/1455))
115+
([#1455](https://github.com/coder/code-server/issues/1455))
116116
- [WebKit fix](https://bugs.webkit.org/show_bug.cgi?id=210071#c13)
117-
- Keyboard may lose focus in Safari / split view [#4182](https://github.com/coderer/code-server/issues/4182)
118-
- Terminal text does not appear by default [#3824](https://github.com/coderer/code-server/issues/3824)
119-
- Copy & paste in terminal does not work well with keyboard shortcuts [#3491](https://github.com/coderer/code-server/issues/3491)
117+
- Keyboard may lose focus in Safari / split view [#4182](https://github.com/coder/code-server/issues/4182)
118+
- Terminal text does not appear by default [#3824](https://github.com/coder/code-server/issues/3824)
119+
- Copy & paste in terminal does not work well with keyboard shortcuts [#3491](https://github.com/coder/code-server/issues/3491)
120120
- `ctrl+c` does not stop a long-running process in the browser
121121
- Tracking upstream issue here:
122122
[#114009](https://github.com/microsoft/vscode/issues/114009)
123123
- See [workaround](#ctrl-c-workaround)
124124

125125
Additionally, see [issues in the code-server repo that are tagged with the `os-ios`
126-
label](https://github.com/coderer/code-server/issues?q=is%3Aopen+is%3Aissue+label%3Aos-ios)
126+
label](https://github.com/coder/code-server/issues?q=is%3Aopen+is%3Aissue+label%3Aos-ios)
127127
for more information.
128128

129129
### Workaround for issue with `ctrl+c` not stopping a running process in the terminal

docs/npm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ which is currently `14.x`. VS Code also [lists Node.js
2727
requirements](https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites).
2828

2929
Using other versions of Node.js [may lead to unexpected
30-
behavior](https://github.com/coderer/code-server/issues/1633).
30+
behavior](https://github.com/coder/code-server/issues/1633).
3131

3232
## Ubuntu, Debian
3333

@@ -100,7 +100,7 @@ yarn global bin
100100
# Or: npm config get prefix
101101
```
102102

103-
For help and additional troubleshooting, see [#1397](https://github.com/coderer/code-server/issues/1397).
103+
For help and additional troubleshooting, see [#1397](https://github.com/coder/code-server/issues/1397).
104104

105105
## Installing
106106

@@ -116,7 +116,7 @@ code-server
116116
## Troubleshooting
117117

118118
If you need further assistance, post on our [GitHub Discussions
119-
page](https://github.com/coderer/code-server/discussions).
119+
page](https://github.com/coder/code-server/discussions).
120120

121121
### Issues with Node.js after version upgrades
122122

docs/triage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ This will show issues that:
2828
1. If more information is required, please ask the submitter and tag as
2929
`waiting-for-info` and wait.
3030
1. Finally, the issue should be moved into the
31-
[code-server](https://github.com/coderer/code-server/projects/1) project where we
31+
[code-server](https://github.com/coder/code-server/projects/1) project where we
3232
pick out issues to fix and track their progress.
3333

34-
We also use [milestones](https://github.com/coderer/code-server/milestones) to track
34+
We also use [milestones](https://github.com/coder/code-server/milestones) to track
3535
what issues are planned/or were closed for what release.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"license": "MIT",
44
"version": "4.0.2",
55
"description": "Run VS Code on a remote server.",
6-
"homepage": "https://github.com/coderer/code-server",
6+
"homepage": "https://github.com/coder/code-server",
77
"bugs": {
8-
"url": "https://github.com/coderer/code-server/issues"
8+
"url": "https://github.com/coder/code-server/issues"
99
},
10-
"repository": "https://github.com/coderer/code-server",
10+
"repository": "https://github.com/coder/code-server",
1111
"scripts": {
1212
"clean": "./ci/build/clean.sh",
1313
"build": "./ci/build/build-code-server.sh",

0 commit comments

Comments
 (0)