diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 6222c9123cfac7110d446d99388a0230a03daf0b..b5ea0d47face7fdf1ab5a95251f6cce6976b970e 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,10 +1,10 @@ contact_links: - name: Top-Ranking Issues - url: https://github.com/zed-industries/community/issues/52 + url: https://github.com/zed-industries/zed/issues/5393 about: See an overview of the most popular Zed issues - name: Platform Support - url: https://github.com/zed-industries/community/issues/174 + url: https://github.com/zed-industries/zed/issues/5391 about: A quick note on platform support - name: Postive Feedback - url: https://github.com/zed-industries/community/discussions/2337 + url: https://github.com/zed-industries/zed/discussions/5397 about: A central location for kind words about Zed diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 147402b2858dce92355d91e9bd11e20cb43293fc..ad7563616d49f76e07b5c054a702e4f4dbca3796 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,4 +2,4 @@ Release Notes: -- (Added|Fixed|Improved) ... ([#](https://github.com/zed-industries/community/issues/)). +- (Added|Fixed|Improved) ... ([#](https://github.com/zed-industries/zed/issues/)). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index eeac6835e79a102e4088977325b53e2f4cce0659..0ba26162371d5e10fb2c29ba2057c67a7e6e51f2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,14 +4,14 @@ Thanks for your interest in contributing to Zed, the collaborative platform that We want to avoid anyone spending time on a pull request that may not be accepted, so we suggest you discuss your ideas with the team and community before starting on major changes. Bug fixes, however, are almost always welcome. -All activity in Zed forums is subject to our [Code of Conduct](https://docs.zed.dev/community/code-of-conduct). Additionally, contributors must sign our [Contributor License Agreement](https://zed.dev/cla) before their contributions can be merged. +All activity in Zed forums is subject to our [Code of Conduct](https://zed.dev/docs/code-of-conduct). Additionally, contributors must sign our [Contributor License Agreement](https://zed.dev/cla) before their contributions can be merged. ## Contribution ideas If you're looking for ideas about what to work on, check out: - Our public roadmap (link coming soon!) contains a rough outline of our near-term priorities for Zed. -- Our [top-ranking issues](https://github.com/zed-industries/community/issues/52) based on votes by the community. +- Our [top-ranking issues](https://github.com/zed-industries/zed/issues/5393) based on votes by the community. Outside of a handful of extremely popular languages and themes, we are generally not looking to extend Zed's language or theme support by directly building them into Zed. We really want to build a plugin system to handle making the editor extensible going forward. If you are passionate about shipping new languages or themes we suggest contributing to the extension system to help us get there faster. diff --git a/crates/gpui/src/platform/mac/window.rs b/crates/gpui/src/platform/mac/window.rs index 5b454d9b4e06c958c59feb75b2304c977902a047..8954612a4d1a91026e4ee64c818de51082ea60ab 100644 --- a/crates/gpui/src/platform/mac/window.rs +++ b/crates/gpui/src/platform/mac/window.rs @@ -1009,7 +1009,7 @@ fn get_scale_factor(native_window: id) -> f32 { }; // We are not certain what triggers this, but it seems that sometimes - // this method would return 0 (https://github.com/zed-industries/community/issues/2422) + // this method would return 0 (https://github.com/zed-industries/zed/issues/6412) // It seems most likely that this would happen if the window has no screen // (if it is off-screen), though we'd expect to see viewDidChangeBackingProperties before // it was rendered for real. diff --git a/crates/vim/src/test.rs b/crates/vim/src/test.rs index 1819be7878b63c8db61bd97b0a42b0e72e234f73..0d2ad2c95cfb27f073ff3ab0166a808acdfda1e1 100644 --- a/crates/vim/src/test.rs +++ b/crates/vim/src/test.rs @@ -146,7 +146,7 @@ async fn test_end_of_document_710(cx: &mut gpui::TestAppContext) { cx.simulate_keystrokes(["shift-g"]); cx.assert_editor_state("aa\nbb\ncˇc"); - // can go to line 1 (https://github.com/zed-industries/community/issues/710) + // can go to line 1 (https://github.com/zed-industries/zed/issues/5812) cx.simulate_keystrokes(["1", "shift-g"]); cx.assert_editor_state("aˇa\nbb\ncc"); } diff --git a/crates/vim/src/visual.rs b/crates/vim/src/visual.rs index d082ccc13878a98a24f75922abfd4ad21292c2d1..09b8e2c1b8044cb975e5f4a7be99b3218e402d2e 100644 --- a/crates/vim/src/visual.rs +++ b/crates/vim/src/visual.rs @@ -899,7 +899,7 @@ mod test { }) .await; - //https://github.com/zed-industries/community/issues/1950 + // https://github.com/zed-industries/zed/issues/6274 cx.set_shared_state(indoc! { "Theˇ quick brown diff --git a/crates/workspace/src/workspace.rs b/crates/workspace/src/workspace.rs index a552d9c5af645d5a76ba8010b52dae79139b022a..f645b1e7fac7165a797d7b304c6721669ddc5df2 100644 --- a/crates/workspace/src/workspace.rs +++ b/crates/workspace/src/workspace.rs @@ -3450,7 +3450,7 @@ fn open_items( } fn notify_if_database_failed(workspace: WindowHandle, cx: &mut AsyncAppContext) { - const REPORT_ISSUE_URL: &str ="https://github.com/zed-industries/community/issues/new?assignees=&labels=defect%2Ctriage&template=2_bug_report.yml"; + const REPORT_ISSUE_URL: &str ="https://github.com/zed-industries/zed/issues/new?assignees=&labels=defect%2Ctriage&template=2_bug_report.yml"; workspace .update(cx, |workspace, cx| { diff --git a/docs/src/feedback.md b/docs/src/feedback.md index 11ae444079c05d9b2573e4c691ef88848ddd2fd7..466b9dc05e4809f14fd718bec8769bb8ba6343a8 100644 --- a/docs/src/feedback.md +++ b/docs/src/feedback.md @@ -2,7 +2,7 @@ ### Community repository -We track our issues at [`zed-industries/community`](https://github.com/zed-industries/community/issues). +We track our issues at [`zed-industries/community`](https://github.com/zed-industries/zed/issues). #### Feature requests @@ -22,7 +22,7 @@ Anonymous feedback can be submitted from within Zed via the feedback editor (com ### Zed forum -Use the [community forum](https://github.com/zed-industries/community/discussions) to ask questions and learn from one another. We will be present in the forum and answering questions as well. +Use the [community forum](https://github.com/zed-industries/zed/discussions) to ask questions and learn from one another. We will be present in the forum and answering questions as well. ### Email diff --git a/docs/src/system_requirements.md b/docs/src/system_requirements.md index 1049626d1e3ceab907dcf8a53bbad17199a0be83..3c36d1ede491c42858c1d16619fdf7436cc1ad0c 100644 --- a/docs/src/system_requirements.md +++ b/docs/src/system_requirements.md @@ -10,4 +10,4 @@ The implementation of our screen sharing feature makes use of [LiveKit](https:// ## Linux, Windows, and Web -_Not supported at this time. See our_ [_Platform Support_](https://github.com/zed-industries/community/issues/174) _issue._ +_Not supported at this time. See our_ [_Platform Support_](https://github.com/zed-industries/zed/issues/5391) _issue._ diff --git a/docs/src/telemetry.md b/docs/src/telemetry.md index 4841ecfe51fadb555cc61eb86d5b52fadf1ac36f..ab10d380aa47bc1b9935d6d2a825afab8d03d465 100644 --- a/docs/src/telemetry.md +++ b/docs/src/telemetry.md @@ -144,4 +144,4 @@ The telemetry settings can also be configured via the `welcome` screen, which ca ### Concerns and Questions -If you have concerns about telemetry, please feel free to open issues in our [community repository](https://github.com/zed-industries/community/issues/new/choose). +If you have concerns about telemetry, please feel free to open issues in our [community repository](https://github.com/zed-industries/zed/issues/new/choose).